We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
We should put this feature a bit on the side, in a trait.
Something like:
impl Ordermap { fn get_pair_mut(&mut self, key: &Q) -> (&K, &mut V) { .. } } impl MutableKeys for OrderMap { fn good_method_name(&mut self, key: &Q) -> (&mut K, &mut V) { .. } }