(&self)
| 261 | } |
| 262 | |
| 263 | pub fn count(&self) -> usize { |
| 264 | self.slots.iter().flat_map(|v| v.iter()).filter(|e| e.hits >= TPL_THRESH).count() |
| 265 | } |
| 266 | |
| 267 | pub fn mark_all(&self, heap: &mut super::types::HeapPool) { |
| 268 | for slot in &self.slots { |
no test coverage detected