Get the element at `k` if it exists, mutable version.
(&mut self, k: K)
| 70 | |
| 71 | /// Get the element at `k` if it exists, mutable version. |
| 72 | pub fn get_mut(&mut self, k: K) -> Option<&mut V> { |
| 73 | self.elems.get_mut(k.index()) |
| 74 | } |
| 75 | |
| 76 | /// Is this map completely empty? |
| 77 | #[inline] |