Skip to content

v0.6.2

Compare
Choose a tag to compare
@Tessil Tessil released this 25 Sep 20:22
· 57 commits to master since this release
908ccf9
  • Fix compilation error for move-only types with a throwing move constructor/operator (#14).
  • Add support for min_load_factor (#17).
  • Fix compilation error when exceptions are disabled and C++ 14 or higher is used (#18).
  • Fix issue #23. The distance_type used to store the distance of a value in a bucket from its ideal bucket could overflow when a lot of collisions happened and the load_factor() stayed below REHASH_ON_HIGH_NB_PROBES__MIN_LOAD_FACTOR. We now rehash no matter the load factor if the distance becomes too high.
  • Add bool contains(...) methods.