mirror of
https://github.com/luau-lang/rfcs.git
synced 2025-04-05 11:00:58 +01:00
Add table.unpack comment
This commit is contained in:
parent
eaf45cca9e
commit
7eed972c27
1 changed files with 6 additions and 0 deletions
|
@ -183,6 +183,12 @@ For unpacking arrays, this proposal suggests:
|
||||||
{ [1] = foo, [2] = bar }
|
{ [1] = foo, [2] = bar }
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Or alternatively, using `table.unpack`:
|
||||||
|
|
||||||
|
```Lua
|
||||||
|
foo, bar = table.unpack(data)
|
||||||
|
```
|
||||||
|
|
||||||
For disambiguity with other languages, we would still not allow:
|
For disambiguity with other languages, we would still not allow:
|
||||||
|
|
||||||
```Lua
|
```Lua
|
||||||
|
|
Loading…
Add table
Reference in a new issue