mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-04 10:50:54 +01:00
Added generic functions RFC
This commit is contained in:
parent
a6844a8247
commit
72f08510f2
1 changed files with 110 additions and 0 deletions
110
rfcs/generic-functions.md
Normal file
110
rfcs/generic-functions.md
Normal file
|
@ -0,0 +1,110 @@
|
|||
# generic functions
|
||||
|
||||
## Summary
|
||||
|
||||
Extend the syntax and semantics of functions to support explicit generic functions, which can bind type parameters as well as data parameters.
|
||||
|
||||
## Motivation
|
||||
|
||||
Currently Luau allows generic functions to be inferred but not given expliit type annotations. For example
|
||||
|
||||
```
|
||||
function id(x) return x end
|
||||
local x: string = id("hi")
|
||||
local y: number = id(37)
|
||||
```
|
||||
|
||||
is fine, but there is no way for a user to write the type of `id`.
|
||||
|
||||
## Design
|
||||
|
||||
Allow functions to take type parameters as well as function parameters, similar to Java/Typescript/...
|
||||
|
||||
```
|
||||
function id<a>(x : a) : a return x end
|
||||
```
|
||||
|
||||
Functions may also take generic type pack arguments for varargs, for instance:
|
||||
|
||||
```
|
||||
function compose<a...>(... : a...) -> (a...) return ... end
|
||||
```
|
||||
|
||||
This change is *not* only syntax, as explicit type parameters need to be part of the semantics of types. For example:
|
||||
|
||||
```
|
||||
function f()
|
||||
function id(x) return x end
|
||||
return id
|
||||
end
|
||||
function g()
|
||||
local y
|
||||
function oh(x)
|
||||
if not(y) then y = x end
|
||||
return y
|
||||
end
|
||||
return oh
|
||||
end
|
||||
```
|
||||
|
||||
The types of these functions are
|
||||
|
||||
```
|
||||
f : () -> <a>(a) -> a
|
||||
g : <a>() -> (a) -> a
|
||||
```
|
||||
|
||||
so this is okay:
|
||||
|
||||
```
|
||||
local i = f()
|
||||
local x: string = i("hi")
|
||||
local y: number = i(37)
|
||||
```
|
||||
|
||||
but this is not:
|
||||
|
||||
```
|
||||
local i = g()
|
||||
local x: string = i("hi")
|
||||
-- This is unsound, since it assigns a string to a variable of type number
|
||||
local y: number = i(37)
|
||||
```
|
||||
|
||||
Currently, Luau does not have explicit type binders, so `f` and `g` have the same type. We propose making type binders part of the semantics of types as well as their syntax (so `f` and `g` have different types, and the unsound example does not typecheck).
|
||||
|
||||
We propose supporting type parameters which can be instantiated with any type (jargon: Rank-N Types) but not type functions (jargon: Higher Kinded Types) or types with constraints (jargon: F-bounded polymorphism).
|
||||
|
||||
## Drawbacks
|
||||
|
||||
This is a breaking change, in that examples like the unsound program above will no longer typecheck.
|
||||
|
||||
Types become more complex, so harder for programmers to reason about, and adding to their space usage. This is particularly noticable anywhere the typechecker has exponential blowup, since small increases in type size can result in large increases in space or time usage.
|
||||
|
||||
Not having higher-kinded types stops some examples which are parameterized on container types, for example:
|
||||
|
||||
```
|
||||
function g<c>(f : <a>(a) -> c<a>) : <b>(b) -> c<c<b>>
|
||||
return function(x) return f(f(x)) end
|
||||
end
|
||||
```
|
||||
|
||||
Not having bounded types stops some examples like giving a type to the function that sums an non-empty array:
|
||||
|
||||
```
|
||||
functionm sum(xs)
|
||||
local result = x[0]
|
||||
for i=1,#xs
|
||||
result += x[i]
|
||||
end
|
||||
return result
|
||||
end
|
||||
```
|
||||
|
||||
## Alternatives
|
||||
|
||||
We did originally consider Rank-1 types, but the problem is that's not backward-compatible, as DataBrain pointed out in https://devforum.roblox.com/t/luau-recap-march-2021/1141387/29, since `typeof` allows users to construct generic types even without syntax for them.
|
||||
|
||||
We could introduce syntax for generic types without changing the semantics, but then there'd be a gap between the syntax (where the types `() -> <a>(a) -> a` and `<a>() -> (a) -> a` are different) and the semantics (where they are not). As noted above, this isn't sound.
|
||||
|
||||
Rather than using Rank-N types, we could use SML-style polymorphism, but this would need something like the (http://users.cis.fiu.edu/~smithg/cop4555/valrestr.html)[value restriction] to be sound.
|
Loading…
Add table
Reference in a new issue