(&mut self, other: &mut Vec<V>)
| 223 | /// Append values from another vector. |
| 224 | #[inline] |
| 225 | pub fn append_values(&mut self, other: &mut Vec<V>) { |
| 226 | self.values.append(other); |
| 227 | } |
| 228 | |
| 229 | /// Take all keys, leaving an empty vector. |
| 230 | #[inline] |
no outgoing calls
no test coverage detected