We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We need to be able to unpack arrays and maps (like Python for example), Syntax wise it might look like *[] and **{}
*[]
**{}
Unpacking mostly will be used to pass arguments and keyword arguments to functions from an array / map
Example:
my_func = fn (x, y) { println(x, y) } my_func(*[1, 2]) # -> 1 2 my_func(**{"x": 42, "y": 4002}) # -> 42 4002
Also, returning multiple values will return the values packed inside an array
my_func = fn () { return 42, 4002 } println(my_func()) # -> [42, 4002] println(*(my_func())) # -> 42, 4002 (after unpack)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We need to be able to unpack arrays and maps (like Python for example), Syntax wise it might look like
*[]
and**{}
Unpacking mostly will be used to pass arguments and keyword arguments to functions from an array / map
Example:
Also, returning multiple values will return the values packed inside an array
The text was updated successfully, but these errors were encountered: