Skip to content

A hashmap implementation, which uses hashset, and keys are contained within values.

Notifications You must be signed in to change notification settings

pmnoxx/projected-hash-map

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 

Repository files navigation

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.

About

A hashmap implementation, which uses hashset, and keys are contained within values.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages