projected-hash-map 0.1.2

Implementation of a projected HashMap over HashSet
Documentation
  • Coverage
  • 77.78%
    7 out of 9 items documented0 out of 8 items with examples
  • Size
  • Source code size: 5.37 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.7 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 10s Average build duration of successful builds.
  • all releases: 10s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • pmnoxx/projected-hash-map
    2 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • pmnoxx

Projected hash hash map over hash set.

Overview

Often when storing objects inside a hashmap, their keys are already contained inside them. It's more efficient to store every key exactly once..

Implementation

ProjectedHashMap is implemented over HashSet.

It's defined for pair <K, V>, user of this crate needs to implement Borrow<K> for V.