Like a [HashMap], but allows you to use two different keys to the same value/data.
Sometimes during development, it may be necessary to have a data structure like
a HashMap
but with two different keys refiring to the same data.
For example, if you have some data with a unique ID and a name, then you create
a structure that contains the name, and store it in a normal HashMap
using
the unique ID as the key. However, finding the element throughout the name will be
performed with O(n) time. The same is true for the reverse case.
This crate try to resolve this contradiction by providing a DHashMap structure -
a map where you can add, lookup and remove elements using either the first key
of type K1
or the second key of type K2
.
Internally, it uses two maps: the first is of type HashMap<K1, (K2, V)>
and
the second is of type HashMap<K2, K1>
. Using two HashMap
's insides instead
one brings to the performance and memory penalty.
It is recommended to use the first key of type K1
of quick access to the data,
because indexing by the second key of type K2
requires two HashMap
lookups.
Double Map is in active development. The design goal is implementing the whole [HashMap] interface. Look at Change log for more infomation.
new
: Done sinse v0.1.0
with_capacity
: Done sinse v0.1.0
with_hasher
: Done sinse v0.1.0
with_capacity_and_hasher
: Done sinse v0.1.0
capacity
: Done sinse v0.1.0
keys
: Under development into_keys
: Under development values
: Under development values_mut
: Under development into_values
: Under development iter Under
: development iter_mut
: Under development len
: Done sinse v0.1.0
is_empty
: Done sinse v0.1.0
drain
: Under development drain_filter
: Under development retain
: Under development clear
: Done sinse v0.1.0
hasher
: Done sinse v0.1.0
reserve
: Done sinse v0.1.0
try_reserve
: Done sinse v0.1.0
shrink_to_fit
: Done sinse v0.1.0
shrink_to
: Done sinse v0.1.0
entry
: Done sinse v0.1.0
get
: Done sinse v0.1.0
(get_key1
and get_key2
methods) get_key_value
: Under development contains_key
: Under development get_mut
: Done sinse v0.1.0
(get_mut_key1
and get_mut_key2
methods) insert
: Done sinse v0.1.0
(insert_unchecked
and insert
methods) try_insert
: Done sinse v0.1.0
remove
: Done sinse v0.1.0
(remove_key1
and remove_key2
methods) remove_entry
: Under development raw_entry_mut
: Under development raw_entry
: Under development Clone
: Under developmentDebug
: Under developmentDefault
: Under developmentExtend
: Under developmentFrom
: Under developmentFromIterator
: Under developmentIndex
: Under developmentIntoIterator
: Under developmentPartialEq
: Under developmentLicensed under Apache License, Version 2.0, (LICENSE or https://www.apache.org/licenses/LICENSE-2.0) at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be licensed as above, without any additional terms or conditions.