wasm-sort 0.10.0

sort algorithms
Documentation
mod heapsort;
mod selection_sort;

pub use selection_sort::selection_sort_float32array;
pub use selection_sort::selection_sort_float64array;
pub use selection_sort::selection_sort_int16array;
pub use selection_sort::selection_sort_int32array;
pub use selection_sort::selection_sort_int8array;
pub use selection_sort::selection_sort_uint16array;
pub use selection_sort::selection_sort_uint32array;
pub use selection_sort::selection_sort_uint8array;

pub use heapsort::heapsort_float32array;
pub use heapsort::heapsort_float64array;
pub use heapsort::heapsort_int16array;
pub use heapsort::heapsort_int32array;
pub use heapsort::heapsort_int8array;
pub use heapsort::heapsort_uint16array;
pub use heapsort::heapsort_uint32array;
pub use heapsort::heapsort_uint8array;