Release 0.9.1
This release brings a few nice improvements from Bruno: SortedIterationKTypeVTypeHashMap view that allows you to traverse maps in sorted key order, an efficient QuickSort implementation for faster sorting and a few minor additions to the API.
Resolved issues:
https://github.com/carrotsearch/hppc/milestone/3?closed=1
JavaDoc:
http://carrotsearch.github.io/hppc/releases/0.9.1/api/
New features and API changes
-
GH-31: Added QuickSort and used it in SortedIterationKTypeVTypeHashMap. (Bruno Roustant)
QuickSort can be used with custom element comparator and swapper. -
GH-28: Added SortedIterationKTypeVTypeHashMap: a sorted-iteration order view over
another key-value map. (Bruno Roustant)