gvec 0.5.0

Very simple implementation of generational indexing for vectors written in Rust
Documentation
  • Coverage
  • 31.25%
    5 out of 16 items documented0 out of 0 items with examples
  • Size
  • Source code size: 22.44 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 3.07 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
  • noblehelm/gvec
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • noblehelm

gvec

gvec is a simple library for Generational Vecs and Indices written in Rust. It simply deals with insertion and removal of elements/values to the vector itself, while avoiding use-after-free scenarios and reusing available space.

Current features

  • Insertion
  • Removal
  • Automatic reallocation when the vector is full
  • "vec![]"-like macro
  • Iterator

Possible new features

  • Enumeration with support for GenerationalIndexing