mirror of
https://github.com/luau-lang/rfcs.git
synced 2025-04-05 11:00:58 +01:00
Tuple-like tables
This commit is contained in:
parent
3bb50be55d
commit
10498ab0ef
1 changed files with 9 additions and 1 deletions
|
@ -355,4 +355,12 @@ But one case against is that JavaScript uses brackets/braces to dinstinguish arr
|
|||
let { foo, bar, baz } = data;
|
||||
```
|
||||
|
||||
Whether this downside is actually significant enough should be discussed in comments though.
|
||||
Whether this downside is actually significant enough should be discussed in comments though.
|
||||
|
||||
Consecutive keys are arguably most useful when used with tuple-like types like `{1, "foo", true}`, as they can match each value by position:
|
||||
|
||||
```Luau
|
||||
{ id, text, isNeat }
|
||||
```
|
||||
|
||||
However, Luau does not allow these types to be expressed at the moment. It isn't out of the question that we could support this in the future, so the door should likely be left open for tuple-like tables.
|
Loading…
Add table
Reference in a new issue