Crate rost

Crate rost 

Source
Expand description

§Rost

A library for rosting. — Ahem, I meant sorting.

This crate is inspired by https://github.com/FedericoStra/Sorting.

Structs§

InsertionSort
https://en.wikipedia.org/wiki/Insertion_sort
PDQsort
https://github.com/orlp/pdqsort
Timsort
https://en.wikipedia.org/wiki/Timsort

Traits§

SortingAlgorithm
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.