Lock-free concurrent and single-threaded hash map implementations using Leapfrog probing. Currently the highest performance concurrent HashMap in Rust for certain use cases.
Instead of returning Ref/RefMut containing a null value from LeapMap's iterators, we can skip returning it at the cost of one additional load, but that is up to the maintainer's choice.
Fixes https://github.com/robclu/leapfrog/issues/10
Instead of returning
Ref
/RefMut
containing a null value fromLeapMap
's iterators, we can skip returning it at the cost of one additionalload
, but that is up to the maintainer's choice.