vec_key_value_pair 0.2.0

A drop-in replacement for std::HashMap and std::HashSet that use Vec on the backend
Documentation
  • Coverage
  • 6.38%
    6 out of 94 items documented0 out of 89 items with examples
  • Size
  • Source code size: 68.75 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 19.85 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • Ciubix8513/vec_key_value_pair
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • Ciubix8513

vec_key_value_pair

A drop in replacement for std::HashMap and std::HashSet that use Vec on the backend. Meant for small maps, where you need the key-value pair structure, but don't want to pay for the expensive hashing.

Can also be used for types that don't implement Hash

In the worst case scenario the performance of this data structure is O(n)