File tree 2 files changed +6
-0
lines changed
2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
10
10
## Added
11
11
- Added safe ` try_insert_no_grow ` method to ` RawTable ` . (#229 )
12
12
- Implemented ` Default ` for ` RawTable ` . (#237 )
13
+ - Added new safe methods ` RawTable::get_each_mut ` , ` HashMap::get_each_mut ` , and
14
+ ` HashMap::get_each_key_value_mut ` . (#239 )
13
15
14
16
## Changed
15
17
- The minimum Rust version has been bumped to 1.49.0. (#230 )
Original file line number Diff line number Diff line change @@ -1107,6 +1107,8 @@ where
1107
1107
///
1108
1108
/// This method is available only if the `nightly` feature is enabled.
1109
1109
///
1110
+ /// # Examples
1111
+ ///
1110
1112
/// ```
1111
1113
/// use hashbrown::{HashMap, UnavailableMutError};
1112
1114
///
@@ -1164,6 +1166,8 @@ where
1164
1166
///
1165
1167
/// This method is available only if the `nightly` feature is enabled.
1166
1168
///
1169
+ /// # Examples
1170
+ ///
1167
1171
/// ```
1168
1172
/// use hashbrown::{HashMap, UnavailableMutError};
1169
1173
///
You can’t perform that action at this time.
0 commit comments