Expand description
§Rost
A library for rosting. — Ahem, I meant sorting.
This crate is inspired by https://github.com/FedericoStra/Sorting.
Structs§
- Insertion
Sort - https://en.wikipedia.org/wiki/Insertion_sort
- PDQsort
- https://github.com/orlp/pdqsort
- Timsort
- https://en.wikipedia.org/wiki/Timsort
Traits§
- Sorting
Algorithm - An algorithm for sorting.
Functions§
- is_
sorted - Checks if the elements of the slice are sorted.
- sort
- Sorts the given slice using a specific
SortingAlgorithm
.