sliceread 0.1.3

Slice reading utilities
Documentation
  • Coverage
  • 31.25%
    5 out of 16 items documented0 out of 15 items with examples
  • Size
  • Source code size: 7.86 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.88 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 11s Average build duration of successful builds.
  • all releases: 11s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • PizzaCrust
sliceread-0.1.3 has been yanked.

sliceread provides basic utilities to read from slices in a linear fashion, into other slices and numerical primitives. Additionally, the crate provides additional functions to map and access the data in a easier fashion. Why? Reading from a slice in a manner like this, allows you to significantly boost reading speeds compared to the Read trait; avoiding allocations and copying among other things. (if you do not want to mutate)