mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-04 10:50:54 +01:00
Update 2021-03-29-luau-recap-march-2021.md
This commit is contained in:
parent
8d712c47b6
commit
094d5a0e09
1 changed files with 1 additions and 19 deletions
|
@ -32,25 +32,7 @@ end
|
|||
|
||||
## Generic functions
|
||||
|
||||
Luau has always supported type inference for generic functions, for example:
|
||||
```
|
||||
type Point<X,Y> = { x: X, y: Y }
|
||||
function swap(p)
|
||||
return { x = p.y, y = p.x }
|
||||
end
|
||||
local p : Point<number, string> = swap({ x = "hi", y = 37 })
|
||||
local q : Point<boolean, string> = swap({ x = "hi", y = true })
|
||||
```
|
||||
but up until now, there's been no way to write the type of `swap`, since Luau didn't have type parameters to functions (just regular old data parameters). Well, now you can:
|
||||
```
|
||||
function swap<X, Y>(p : Point<X, Y>): Point<Y, X>
|
||||
return { x = p.y, y = p.x }
|
||||
end
|
||||
```
|
||||
Generic functions can be used in function declarations, and function types too, for example
|
||||
```
|
||||
type Swapper = { swap : <X, Y>(Point<X, Y>) -> Point<Y, X> }
|
||||
```
|
||||
**WARNING** Generic functions are currently disabled as we're fixing some critical bugs.
|
||||
|
||||
## Typechecking improvements
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue