(&self)
| 270 | } |
| 271 | |
| 272 | pub fn live_count(&self) -> usize { |
| 273 | let mut total = self.growing.live_count(); |
| 274 | for seg in &self.sealed { |
| 275 | total += seg.index.live_count(); |
| 276 | } |
| 277 | for seg in &self.building { |
| 278 | total += seg.flat.live_count(); |
| 279 | } |
| 280 | total |
| 281 | } |
| 282 | |
| 283 | pub fn is_empty(&self) -> bool { |
| 284 | self.live_count() == 0 |
no outgoing calls
no test coverage detected