From 5c01bf5ce62844bc0839decd2d56354bffaf932e Mon Sep 17 00:00:00 2001 From: Kiiyoko <73446312+Kiiyoko@users.noreply.github.com> Date: Fri, 13 Dec 2024 18:58:17 -0500 Subject: [PATCH] Update generic-constraints.md fixed tabs --- docs/generic-constraints.md | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/docs/generic-constraints.md b/docs/generic-constraints.md index 95b0fad..f86c8fb 100644 --- a/docs/generic-constraints.md +++ b/docs/generic-constraints.md @@ -7,7 +7,7 @@ Luau currently does not provide a way in order to constrain the type of a generi local qux = { foo = 10, bar = "string" } local function getProperty( object: T, key: keyof ): index> - return object[key] + return object[key] end local foo = getProperty( qux, "foo" ) @@ -34,7 +34,7 @@ There are a few options for the syntax of generic constraints. 1. Treat the generic parameter as a variable--annotate it as declaring a new variable. ```luau local function getProperty>( object: T, key: K ): index - return object[ key ] + return object[ key ] end type getProperty> = ( object: T, key: K ) -> index @@ -44,8 +44,7 @@ This would match the current expectation of `:` being used to type annotate a va 2. Use a `where` clause. ```luau local function getProperty>( object: T, key: K ): index - - return object[ key ] + return object[ key ] end type getProperty = ( object: T, key: K ) -> ( index ) where< K: keyof > @@ -58,7 +57,7 @@ This would allow users to specify the constraints of the separately from the gen This is the problem posed at the beginning of this RFC. ```lua local function callbackProperty>( object: T, key: K, callback: (property: index) -> () ) - callback( object[ key ] ) + callback( object[ key ] ) end ``` `K` will be constrained to be `keyof`. This would allow `index` to infer the type properly. @@ -66,11 +65,11 @@ end ```luau -- Attempt 1 local function sumSpecific( a: number | vector, b: number | vector ): number | vector - return a + b -- not okay! + return a + b -- not okay! end -- Attempt 2 local function sumSpecific( a: T, b: T ): T - return a + b -- not okay! not all types are addable. + return a + b -- not okay! not all types are addable. end ``` This is to be expected. Luau does not interpret `a` and `b` as the same type, but if we use a generic then Luau throws an error that not all types are addable. @@ -83,7 +82,7 @@ end This is fine, but is not concise whatsoever, and does not allow for the traditional function declaration syntax. ```luau local function sumSpecific( a: T, b: T ): T - return a + b + return a + b end sumSpecific( vector.create( 42, 42, 42 ) + vector.create( 143, 143, 143 ) ) -- okay!