(&self, index: usize)
| 196 | /// ``` |
| 197 | #[inline] |
| 198 | pub unsafe fn get_key_value_unchecked(&self, index: usize) -> (&K, &V) { |
| 199 | ( |
| 200 | self.keys.get_unchecked(index), |
| 201 | self.values.get_unchecked(index), |
| 202 | ) |
| 203 | } |
| 204 | |
| 205 | /// Push a key to the keys vector. |
| 206 | #[inline] |
no test coverage detected