#hash-map #hash-set #projection #keyed #elements #index

keyed-set

Keyed Set: a hashbrown-based HashSet that indexes based on projections of its elements

10 releases (1 stable)

1.0.0 Mar 5, 2024
0.4.5 Mar 29, 2023
0.4.4 Dec 21, 2022
0.4.2 Nov 14, 2022
0.1.0 Nov 8, 2022

#355 in Data structures

Download history 4646/week @ 2023-12-19 2590/week @ 2023-12-26 3924/week @ 2024-01-02 4585/week @ 2024-01-09 5404/week @ 2024-01-16 7096/week @ 2024-01-23 8031/week @ 2024-01-30 9321/week @ 2024-02-06 8632/week @ 2024-02-13 7281/week @ 2024-02-20 9011/week @ 2024-02-27 10427/week @ 2024-03-05 9619/week @ 2024-03-12 10245/week @ 2024-03-19 6669/week @ 2024-03-26 7470/week @ 2024-04-02

35,819 downloads per month
Used in 49 crates (via zenoh-keyexpr)

EPL-2.0 license

21KB
451 lines

Keyed Set: a hashbrown-based HashSet that indexes based on projections of its elements.

Ever wanted a HashMap<K, V>, but where V actually contains K (or at least can be projected to it)? Well this is it.

The easiest way to define a projection is through a closure that you pass at construction, but you may also define your own key extractors as ZSTs that implement Default to gain a Default constructor for your Keyed Sets.


lib.rs:

Keyed Set: a hashbrown-based HashSet that indexes based on projections of its elements.

Ever wanted a HashMap<K, V>, but where V actually contains K (or at least can be projected to it)? Well this is it.

The easiest way to define a projection is through a closure that you pass at construction, but you may also define your own key extractors as ZSTs that implement Default to gain a Default constructor for your Keyed Sets.

Dependencies

~1.5MB
~24K SLoC