| OLD | NEW |
| 1 ## 1.4.0 | 1 ## 1.4.0 |
| 2 | 2 |
| 3 * Add a `new PriorityQueue()` constructor that forwards to `new | 3 * Add a `new PriorityQueue()` constructor that forwards to `new |
| 4 HeapPriorityQueue()`. | 4 HeapPriorityQueue()`. |
| 5 | 5 |
| 6 * Deprecate top-level libraries other than `package:collection/collection.dart`, |
| 7 which exports these libraries' interfaces. |
| 8 |
| 6 ## 1.3.0 | 9 ## 1.3.0 |
| 7 | 10 |
| 8 * Add `lowerBound` to binary search for values that might not be present. | 11 * Add `lowerBound` to binary search for values that might not be present. |
| 9 | 12 |
| 10 * Verify that the is valid for `CanonicalMap.[]`. | 13 * Verify that the is valid for `CanonicalMap.[]`. |
| 11 | 14 |
| 12 ## 1.2.0 | 15 ## 1.2.0 |
| 13 | 16 |
| 14 * Add string comparators that ignore ASCII case and sort numbers numerically. | 17 * Add string comparators that ignore ASCII case and sort numbers numerically. |
| 15 | 18 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 38 | 41 |
| 39 * Fix all analyzer hints. | 42 * Fix all analyzer hints. |
| 40 | 43 |
| 41 ## 0.9.3 | 44 ## 0.9.3 |
| 42 | 45 |
| 43 * Add a `MapKeySet` class that exposes an unmodifiable `Set` view of a `Map`'s | 46 * Add a `MapKeySet` class that exposes an unmodifiable `Set` view of a `Map`'s |
| 44 keys. | 47 keys. |
| 45 | 48 |
| 46 * Add a `MapValueSet` class that takes a function from values to keys and uses | 49 * Add a `MapValueSet` class that takes a function from values to keys and uses |
| 47 it to expose a `Set` view of a `Map`'s values. | 50 it to expose a `Set` view of a `Map`'s values. |
| OLD | NEW |