Crates.io | slice-utils |
lib.rs | slice-utils |
version | 2.2.1 |
source | src |
created_at | 2024-03-17 04:24:54.575649 |
updated_at | 2024-09-24 06:00:28.827798 |
description | A collection of slice utils, like itertools. |
homepage | |
repository | https://github.com/Kyllingene/slice-utils |
max_upload_size | |
id | 1176202 |
size | 71,810 |
::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.
Licensed under the MIT license.