Get the element at `k` if it exists, mutable version.
(&mut self, k: K)
| 82 | |
| 83 | /// Get the element at `k` if it exists, mutable version. |
| 84 | pub fn get_mut(&mut self, k: K) -> Option<&mut V> { |
| 85 | self.elems.get_mut(k.index()) |
| 86 | } |
| 87 | |
| 88 | /// Is this map completely empty? |
| 89 | pub fn is_empty(&self) -> bool { |