Whether the growing segment has no vectors.
(&self)
| 255 | |
| 256 | /// Whether the growing segment has no vectors. |
| 257 | pub fn growing_is_empty(&self) -> bool { |
| 258 | self.growing.is_empty() |
| 259 | } |
| 260 | |
| 261 | pub fn len(&self) -> usize { |
| 262 | let mut total = self.growing.len(); |
no test coverage detected