Get the element at `k` if it exists, mutable version.
(&mut self, k: K)
| 50 | |
| 51 | /// Get the element at `k` if it exists, mutable version. |
| 52 | pub fn get_mut(&mut self, k: K) -> Option<&mut V> { |
| 53 | self.elems.get_mut(k.index()) |
| 54 | } |
| 55 | |
| 56 | /// Is this map completely empty? |
| 57 | pub fn is_empty(&self) -> bool { |