Update typecheck.md

This commit is contained in:
Arseny Kapoulkine 2021-03-31 20:12:43 -07:00 committed by GitHub
parent 2d641976ee
commit 8d712c47b6
Signed by: DevComp
GPG key ID: 4AEE18F83AFDEB23

View file

@ -190,6 +190,8 @@ local numbers: Pair<number> = {first=1, second=2}
## Generic functions
**WARNING** Generic functions are currently disabled as we're fixing some critical bugs.
As well as generic type aliases like `Pair<T>`, Luau supports generic functions. These are functions that, as well as their regular data parameters, take type parameters. For example, a function which reverses an array is:
```lua
function reverse(a)