You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I don't understand why there is a values() method, but no values_mut() method for map-collections. While keys_mut() can't work, values_mut() shouldn't be a problem, right?
It would be equivalent to map.iter_mut().map(|(_, v)| v).
I don't understand why there is a
values()method, but novalues_mut()method for map-collections. Whilekeys_mut()can't work,values_mut()shouldn't be a problem, right?It would be equivalent to
map.iter_mut().map(|(_, v)| v).