You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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)