Atom - Ṣ
- Sort
Characters: Ṣ
Tags: array , combinatorics
Arity: monadic
This atom is monadic, which means it takes one argument.
Functionality
Stable sort a list from smallest to largest.
Details
Sorting mixed lists may fail because it just directly compares the elements with Python's built-in comparison. If you need to sort a list of elements and some specific key function makes sense, consider the Sort By Key Function (Þ
) quick.