Are there standard sorting functions in SML? The documentation on the Internet is so scarce I couldn't find any.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Rachel is only partly right. It is true that there is no sorting functionality defined in the SML Basis Library, however most implementations extend the basis library and add extra functionality. As such MosML has both an ArraySort and a ListSort module, and SML/NJ has a LIST_SORT signature with a ListMergeSort implementation. It also features some other sorting features on arrays as MosML. See the toc of the SML/NJ Library Manual, for a full list. |
|||
|
|
|
how about this for sorting a list? you could always use reverse to get the reverse either
see here |
|||||||
|