ndarray-slice 0.2.2

Fast and robust slice-based algorithms (e.g., sorting, selection, search) for non-contiguous (sub)views into n-dimensional arrays.
Documentation
# Version 0.2.2 (2023-04-13)

  * Add `rayon` feature for parallel sorting and parallel bulk-selection.
  * Guarantee that bulk-selected elements are in the order of their indices.
  * Half recursive branching of bulk-selection via tail call elimination.

# Version 0.2.1 (2023-04-08)

  * Update docs.

# Version 0.2.0 (2023-04-08)

  * Reduce complexity of bulk selection.
  * Change function signature of bulk selection not requiring `std` nor `alloc`.

# Version 0.1.1 (2023-04-07)

  * Add `alloc` feature.

# Version 0.1.0 (2023-04-07)

  * Initial release.