ndarray-slice 0.6.0

Fast and robust slice-based algorithms (e.g., sorting, selection, search) for non-contiguous (sub)views into n-dimensional arrays.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Derivative work of [`core::slice`] and [`rayon::slice`] licensed under `MIT OR Apache-2.0`.
//!
//! [`core::slice`]: https://doc.rust-lang.org/src/core/slice/mod.rs.html
//! [`rayon::slice`]: https://docs.rs/rayon/latest/src/rayon/slice/mod.rs.html

pub mod heap_sort;
pub mod insertion_sort;
pub mod merge_sort;
pub mod partition;
pub mod quick_sort;