vec_key_value_pair

Crates.iovec_key_value_pair
lib.rsvec_key_value_pair
version0.2.0
sourcesrc
created_at2023-12-29 05:34:25.901996
updated_at2024-06-08 23:49:30.684728
descriptionA drop-in replacement for std::HashMap and std::HashSet that use Vec on the backend
homepage
repositoryhttps://github.com/Ciubix8513/vec_key_value_pair
max_upload_size
id1082983
size69,063
Luna (Ciubix8513)

documentation

README

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)

Commit count: 17

cargo fmt