sort-it 0.2.2

Provides various sorting algorithms
Documentation
1
2
3
4
5
6
7
8
///// The quicksort algorithm.
/////
///// Sorts the given `Vec` and returns the result.
//pub fn quicksort<T>(arr: Vec<T>) -> Vec<T> 
//    where T: PartialEq + PartialOrd + Clone + Copy,
//{
//    todo!()
//}