Lines Matching refs:Added
18 ## Added section in Change Log
20 - Added `Entry` API for `HashSet`. (#342)
21 - Added `Extend<&'a (K, V)> for HashMap<K, V, S, A>`. (#340)
22 - Added length-based short-circuiting for hash table iteration. (#338)
23 - Added a function to access the `RawTable` of a `HashMap`. (#335)
38 ## Added section in Change Log
40 - Added `From<[T; N]>` and `From<[(K, V); N]>` for `HashSet` and `HashMap` respectively. (#297)
41 - Added an `allocator()` getter to HashMap and HashSet. (#257)
42 - Added `insert_unique_unchecked` to `HashMap` and `HashSet`. (#293)
43 - Added `into_keys` and `into_values` to HashMap. (#295)
45 - Added `entry_ref` API to `HashMap`. (#201)
70 - Added missing allocator type parameter to `HashMap`'s and `HashSet`'s `Clone` impls. (#252)
76 - Added missing `pub` modifier to `BumpWrapper`. (#251)
80 ## Added section in Change Log
81 - Added safe `try_insert_no_grow` method to `RawTable`. (#229)
82 - Added support for `bumpalo` as an allocator without the `nightly` feature. (#231)
84 - Added new safe methods `RawTable::get_each_mut`, `HashMap::get_each_mut`, and
86 - Added `From<HashMap<T, ()>>` for `HashSet<T>`. (#235)
87 - Added `try_insert` method to `HashMap`. (#247)
112 ## Added section in Change Log
113 - Added safe methods to `RawTable` (#202):
131 ### Added subsection
132 - Added `replace_entry_with` to `OccupiedEntry`, and `and_replace_entry_with` to `Entry`. (#190)
150 ### Added subsection
151 - Added `erase` and `remove` to `RawTable`. (#171)
152 - Added `try_with_capacity` to `RawTable`. (#174)
153 - Added methods that allow re-using a `RawIter` for `RawDrain`,
155 - Added `reflect_remove` and `reflect_insert` to `RawIter`. (#175)
156 - Added a `drain_filter` function to `HashSet`. (#179)
174 - Added `HashSet::get_or_insert_owned`.
179 ### Added subsection
180 - Added `or_insert_with_key` to `Entry`. (#152)
192 ### Added subsection
193 - Added `HashMap::get_key_value_mut`. (#145)
200 ### Added subsection
201 - Added a `drain_filter` function to `HashMap`. (#135)
211 ### Added subsection
212 - Added an `ahash-compile-time-rng` feature (enabled by default) which allows disabling the
217 ### Added subsection
218 - Added an `inline-more` feature (enabled by default) which allows choosing a tradeoff between
223 ### Added subsection
224 - Added `Entry::insert` and `RawEntryMut::insert`. (#118)
241 ### Added subsection
243 - Added entry-like methods for `HashSet`. (#98)
301 ### Added subsection
302 - Added `insert_with_hasher` to the raw_entry API to allow `K: !(Hash + Eq)`. (#54)
303 - Added support for using hashbrown as the hash table implementation in libstd. (#46)
312 ### Added subsection
344 ### Added subsection