Skip to content

14.3.0

Compare
Choose a tag to compare
@bodil bodil released this 03 Mar 16:26
· 56 commits to master since this release
v14.3.0
10d1067

Changed

  • proptest strategies have been moved to im::proptest. The previous locations of the strategies (im::vector::proptest etc) are still available, but have been deprecated.

Added

  • OrdSet and OrdMap now have get_prev and get_next methods (with equivalent get_prev_mut and get_next_mut methods for OrdMap) which will return the closest key match to the requested key in the specified direction if the key isn't in the set. (#95)
  • The retain method, inexplicably missing from HashMap but not HashSet, has been added. (#120)
  • The get_mut method on OrdMap was, equally inexplicably, private. It has now been made public.