split_slice 1.0.0

A Rust library for accessing (&[T], &[T]) as if it were a single slice
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# `split_slice`
[![Crates.io](https://img.shields.io/crates/v/split_slice.svg)](https://crates.io/crates/split_slice)
[![Docs.rs](https://img.shields.io/docsrs/split_slice)](https://docs.rs/split_slice)

A Rust library for accessing `(&[T], &[T])` as if it were a single slice.

## Features
- Very simple to construct
- `len` and `is_empty`
- `impl Debug` shows it as a single list
- `Iterator`
- Pure Rust, no dependencies, works with `no_std`
- No `alloc` used
- `T` does not need to implement `Clone` or `Copy`

## Use Cases
- Ring buffers
- Custom `VecDequeue`