(&mut self)
| 235 | /// Take all values, leaving an empty vector. |
| 236 | #[inline] |
| 237 | pub fn take_values(&mut self) -> Vec<V> { |
| 238 | std::mem::take(&mut self.values) |
| 239 | } |
| 240 | |
| 241 | /// Perform binary search on keys. |
| 242 | #[inline] |
no outgoing calls
no test coverage detected