Variation of HashMap::entry()
that accepts borrowed forms of keys.
For std::collections::HashMap
, nightly version of Rust is required, along with the crate feature nightly
.
For details, see hash_raw_entry
).
Support for hashbrown can be enabled through crate feature aptly called hashbrown
.
entry_ownable()
can be used as a drop-in replacement for entry()
, unless:
Entry::key()
is used,Entry::Occupied
/Entry::Vacant
).Use this crate if you create/update a lot of entries from borrowed forms of keys (e.g. from &str
instead of String
):
```rust use std::collections::HashMap; use hashmapentryownable::std_hash::EntryAPI;
let rhyme = vec![ "Mary", "had", "a", "little", "lamb", "little", "lamb", "little", "lamb", ];
let mut words: HashMap
for w in rhyme { // words.entry() accepts String but not &str // this version saves us 4 short-living allocations // for consecutive appearances of "little" and "lamb" let counter = words.entryownable(w).orinsert(0); *counter += 1; } ```
This code can be emulated with match map.get_mut(k)
/map.insert(k.to_owned(), …)
.
That too would be faster than regular Entry API if keys are reused a lot,
but entry_ownable()
variant:
entry()
one,get_mut()
/insert()
does it twice if key is not in the map.std::collections::HashMap
:
``` test sillybench::entry1 ... bench: 2,162,452 ns/iter (+/- 17,586) test sillybench::getorinsert1 ... bench: 2,310,910 ns/iter (+/- 7,183) test sillybench::entryownable_1 ... bench: 1,586,380 ns/iter (+/- 7,156)
test sillybench::entry2 ... bench: 3,427,428 ns/iter (+/- 104,755) test sillybench::getorinsert2 ... bench: 2,926,719 ns/iter (+/- 11,077) test sillybench::entryownable_2 ... bench: 2,167,021 ns/iter (+/- 8,140)
test sillybench::entry4 ... bench: 6,068,954 ns/iter (+/- 56,549) test sillybench::getorinsert4 ... bench: 4,150,970 ns/iter (+/- 18,292) test sillybench::entryownable_4 ... bench: 3,321,019 ns/iter (+/- 18,487)
test sillybench::entry8 ... bench: 11,278,344 ns/iter (+/- 82,014) test sillybench::getorinsert8 ... bench: 6,602,424 ns/iter (+/- 33,360) test sillybench::entryownable_8 ... bench: 5,631,416 ns/iter (+/- 54,613) ```
hashbrown::HashMap
:
``` test sillybench::entry1 ... bench: 1,469,848 ns/iter (+/- 9,229) test sillybench::getorinsert1 ... bench: 1,489,309 ns/iter (+/- 10,865) test sillybench::entryownable_1 ... bench: 1,370,580 ns/iter (+/- 5,152)
test sillybench::entry2 ... bench: 2,351,940 ns/iter (+/- 10,374) test sillybench::getorinsert2 ... bench: 1,801,549 ns/iter (+/- 12,360) test sillybench::entryownable_2 ... bench: 1,634,317 ns/iter (+/- 7,421)
test sillybench::entry4 ... bench: 4,418,648 ns/iter (+/- 18,059) test sillybench::getorinsert4 ... bench: 2,451,798 ns/iter (+/- 10,702) test sillybench::entryownable_4 ... bench: 2,292,556 ns/iter (+/- 16,042)
test sillybench::entry8 ... bench: 8,350,365 ns/iter (+/- 39,678) test sillybench::getorinsert8 ... bench: 3,837,979 ns/iter (+/- 20,885) test sillybench::entryownable_8 ... bench: 3,749,296 ns/iter (+/- 5,678) ```
This crate borrows heavily from Rust's own libstd, hence Apache 2.0 and MIT.