split_slice 1.0.0

A Rust library for accessing (&[T], &[T]) as if it were a single slice
Documentation
  • Coverage
  • 0%
    0 out of 5 items documented0 out of 4 items with examples
  • Size
  • Source code size: 6.2 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.72 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • ChocolateLoverRaj/split_slice
    2 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • ChocolateLoverRaj

split_slice

Crates.io Docs.rs

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