(&mut self, other: &mut Vec<K>)
| 217 | /// Append keys from another vector. |
| 218 | #[inline] |
| 219 | pub fn append_keys(&mut self, other: &mut Vec<K>) { |
| 220 | self.keys.append(other); |
| 221 | } |
| 222 | |
| 223 | /// Append values from another vector. |
| 224 | #[inline] |
no outgoing calls
no test coverage detected