rust/src/libcore/hash
Björn Steinbrink f4176b52d3 Restore HashMap performance by allowing some functions to be inlined
Since the hashmap and its hasher are implemented in different crates, we
currently can't benefit from inlining, which means that especially for
small, fixed size keys, there is a huge overhead in hash calculations,
because the compiler can't apply optimizations that only apply for these
keys.

Fixes the brainfuck benchmark in #24014.
2015-05-03 14:08:30 +02:00
..
mod.rs std: Add Default/IntoIterator/ToOwned to the prelude 2015-04-17 16:37:30 -07:00
sip.rs Restore HashMap performance by allowing some functions to be inlined 2015-05-03 14:08:30 +02:00