Skip to content

14.2.0

Compare
Choose a tag to compare
@bodil bodil released this 17 Jan 18:58
· 66 commits to master since this release
v14.2.0
c8d14dc

[14.2.0] - 2020-01-17

Added

  • Both map types now have the get_key_value() method, corresponding to the equivalent additions to the standard library.
  • The ptr_eq method has been added to all data types, allowing you to test whether two values refer to the same content in memory, by testing for pointer equality. (#117)
  • HashMap had lost its Arbitrary implementation for the quickcheck feature flag. It's now been restored. (#118)
  • Implementations for Arbitrary from the arbitrary crate have been added behind the arbitrary feature flag.

Fixed

  • Fixed a bug when reversing a consuming iterator over a Vector by replacing the consuming iterator with a much simpler and slightly more efficient version. (#116)