segmented_vector 0.1.0

a mutable vector type built from array segments, similar to clojure's persistent vector
Documentation
  • Coverage
  • 25%
    1 out of 4 items documented0 out of 0 items with examples
  • Size
  • Source code size: 48.41 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 2.25 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 14s Average build duration of successful builds.
  • all releases: 14s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • robey

segmented_vector

This library implements a replacement for Vec<T> which uses multiple arrays as its backing store, instead of one huge array, similar to clojure's "persistent vectors", but mutable.

to-do

  • docs of any sort
  • move Debug impl into A: Debug