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
reverse
sort
Examples:
{1, 2, 3, 4, 5}.reverse # { 5, 4, 3, 2, 1 } {3, 2, 5, 1, 4}.sort <= # { 1, 2, 3, 4, 5 }
Notes:
The text was updated successfully, but these errors were encountered:
sort has been implemented in d14eb18.
Sorry, something went wrong.
Done.
71104
No branches or pull requests
Examples:
Notes:
reverse
is evaluated lazily.sort
accepts one argument, a partial order relationship. This differs from JavaScript.The text was updated successfully, but these errors were encountered: