(&self, k: K)
| 103 | /// Get the element at `k` if it exists. |
| 104 | #[inline(always)] |
| 105 | pub fn get(&self, k: K) -> Option<&V> { |
| 106 | self.elems.get(k.index()) |
| 107 | } |
| 108 | |
| 109 | /// Get the element at `k` mutably, if it exists. |
| 110 | pub fn get_mut(&mut self, k: K) -> Option<&mut V> { |
no test coverage detected