-
Notifications
You must be signed in to change notification settings - Fork 9
Array operations #53
Copy link
Copy link
Closed
Labels
enhancementNew feature or requestNew feature or request
Milestone
Description
Add the following functionality:
- Array index lookup syntax
array[N]in expressions - consider whetherNcan also be a stringly-typed identifier referring to a variable that can be parsed as an integer. - Array index lookup syntax in string interpolations:
{array[N]} - Chaining ops:
first,last,len,head,tail - Simple destructuring:
let [a, b] = array - Advanced destructuring:
let [first, ..tail] = arrayandlet [..head, last] = array
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request