slice-utils 2.0.3

A collection of slice utils, like itertools.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# `::slice-utils`

See [`Slice`] and children.

This is a collection of utilities for slices, similar to those found on
iterators. The goal is to be as close to feature-parity with iterators as
possible, while maintaining `no_std` compatibility.

The core of this crate is providing non-contiguous slices. For example,
`Slice::chain` allows you to join two slices together, clearly breaking
continuity. This results in an `Iterator`-like API.

# License

Licensed under the MIT license.

[`Slice`]: https://docs.rs/slice-utils/latest/slice_utils/trait.Slice.html