Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Expose values_mut, similar to std::collections::HashMap::values_mut #206

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions src/hash/map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -337,6 +337,19 @@ impl<K, V, S> HashMap<K, V, S> {
}
}

/// Get a mutable iterator over a hash map's values.
///
/// Please note that the order is consistent between maps using
/// the same hasher, but no other ordering guarantee is offered.
/// Items will not come out in insertion order or sort order.
/// They will, however, come out in the same order every time for
/// the same map.
#[inline]
#[must_use]
pub fn values_mut(&mut self) -> impl Iterator<Item = &mut V> {
self.iter_mut().map(|(_, v)| v)
}

/// Discard all elements from the map.
///
/// This leaves you with an empty map, and all elements that
Expand Down