Version 0.8.0
[v0.8.0] - 2022-04-13
Added
get_keys
DHashMap
method that returns a reference to the value corresponding to the given primary
key and secondary key if they both exist and refer to the same value;get_key1_value
DHashMap
method that returns a reference to the key-value pair corresponding
to the given primary key: return the tuple of type(&'a K1, &'a V)
;get_key2_value
DHashMap
method that returns a reference to the key-value pair corresponding
to the given secondary key: return the tuple of type(&'a K2, &'a V)
;get_keys_value
DHashMap
method that returns a reference to the keys-value tuple corresponding
to the given primary key and secondary key if they both exist and refer to the same value: return
the tuple of type(&'a K1, &'a K2, &'a V)
;
Changed
Fixed several typos in previous documentation.
Removed
Nothign
Fixed
Nothing