(&self)
| 259 | } |
| 260 | |
| 261 | pub fn len(&self) -> usize { |
| 262 | let mut total = self.growing.len(); |
| 263 | for seg in &self.sealed { |
| 264 | total += seg.index.len(); |
| 265 | } |
| 266 | for seg in &self.building { |
| 267 | total += seg.flat.len(); |
| 268 | } |
| 269 | total |
| 270 | } |
| 271 | |
| 272 | pub fn live_count(&self) -> usize { |
| 273 | let mut total = self.growing.live_count(); |
no outgoing calls
no test coverage detected