vecdep 0.1.1

A simple VecDeque implementation that doesn't allocate if nothing is pushed.
Documentation
  • Coverage
  • 100%
    10 out of 10 items documented1 out of 9 items with examples
  • Size
  • Source code size: 10.88 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.4 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 9s Average build duration of successful builds.
  • all releases: 9s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • Foxcirc

A very basic FiFo like structure, that is like std's VecDeque, and doesn't allocate on creation.

It can be used inside static variables.

This library uses unsafe code and is only testet minimaly, I can't promise that it works on anything else then x64 windows, It should be compatible with most architectures though.