From de0bc30c1a4310c062eed89ee6bd0435c9640052 Mon Sep 17 00:00:00 2001 From: Kiiyoko <73446312+Kiiyoko@users.noreply.github.com> Date: Thu, 12 Dec 2024 23:14:21 -0500 Subject: [PATCH] Create generic-constraints.md --- docs/generic-constraints.md | 61 +++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 docs/generic-constraints.md diff --git a/docs/generic-constraints.md b/docs/generic-constraints.md new file mode 100644 index 0000000..2d96a6f --- /dev/null +++ b/docs/generic-constraints.md @@ -0,0 +1,61 @@ +# Generic Constraints +## Summary +Introduce syntax to extend/constrain the type of a generic. +## Motivation +Luau currently does not provide a way in order to constrain the type of a generic without direct assertions. +```lua +local qux = { foo = 10, bar = "string" } + +local function getProperty( object: T, key: keyof ) + return object[key] +end + +local foo = getProperty( qux, "foo" ) +-- foo: number | string +local bar = getProperty( qux, "bar" ) +-- bar: number | string +``` +This is wrong! We would expect foo to be a number, with bar being a string. +In the following snippet, it is impossible to tell whether or not the key variable is the same as the one being used to index T in the callback. +```lua +local function callbackProperty( object: T, key: keyof, callback: (index>) -> () ) +... +``` +## Design +The design of this would take inspiration from TypeScript's `extends`, where instead of the additional keyword, we would use `&`. +```lua +local qux = { foo = 10, bar = "string" } + +local function getProperty>( object: T, key: K ) + return object[key] +end + +local foo = getProperty( qux, "foo" ) +-- foo: number +local bar = getProperty( qux, "bar" ) +-- bar: string +``` +This would correctly infer the type of the each key's value. +The following snippet would also thus be correctly inferred. +```lua +local qux = { foo = 10, bar = "string" } + +local function callbackProperty( object: T, key: K, callback: (index) -> () ) + callback( object[key] ) +end + +callbackProperty( object, "foo", function( foo ) + -- foo: number -- this is expected! +end) +``` +An alternative syntax could be the following, but does not satisfy current requirements about `:` only being used inside `()` and `{}`, and personally does not look as good. +```lua +local function getProperty>( object: T, key: K ) ... end +local function callbackProperty( object: T, key: K, callback: (index) -> () ) ... end +``` +## Drawbacks +- I am not familiar with the internals of the typechecker but this would further complicate type inference. +- Adding an extra use to `&` could make its usage more confusing to novices. +## Alternatives +- Don't do this; this would make it impossible for functions like above to be able to be inferred correctly. Just let people explicitly type their variables instead of inferring types. This makes code more verbose and would likely not allow for full optimization. +- Use overloaded functions as previously mentioned, but this wouldn't allow the usage of a generic with correct type inference and would require users to add a new overload for each key.