mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-04 10:50:54 +01:00
Fix function type annotation grammar in docs. (#5)
This commit is contained in:
parent
3be82035bf
commit
8e38c0ec7d
2 changed files with 2 additions and 2 deletions
|
@ -128,7 +128,7 @@ local array: { [number] : string }
|
|||
local object: { x: number, y: string }
|
||||
```
|
||||
|
||||
Additionally, the type syntax supports type intersections (`(number) -> string & (boolean) -> string`) and unions (`(number | boolean) -> string`). An intersection represents a type with values that conform to both sides at the same time, which is useful for overloaded functions; a union represents a type that can store values of either type - `any` is technically a union of all possible types.
|
||||
Additionally, the type syntax supports type intersections (`((number) -> string) & ((boolean) -> string)`) and unions (`(number | boolean) -> string`). An intersection represents a type with values that conform to both sides at the same time, which is useful for overloaded functions; a union represents a type that can store values of either type - `any` is technically a union of all possible types.
|
||||
|
||||
It's common in Lua for function arguments or other values to store either a value of a given type or `nil`; this is represented as a union (`number | nil`), but can be specified using `?` as a shorthand syntax (`number?`).
|
||||
|
||||
|
|
|
@ -227,7 +227,7 @@ local vec3: Vector3 = {x = 1, y = 2, z = 3} -- ok
|
|||
```
|
||||
|
||||
```lua
|
||||
type SimpleOverloadedFunction = (string) -> number & (number) -> string
|
||||
type SimpleOverloadedFunction = ((string) -> number) & ((number) -> string)
|
||||
|
||||
local f: SimpleOverloadedFunction
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue