Mutable iteration over all partitions. Used by `compact()` and similar maintenance passes that apply per-partition without needing tenant routing.
(&mut self)
| 129 | /// similar maintenance passes that apply per-partition without |
| 130 | /// needing tenant routing. |
| 131 | pub fn iter_mut(&mut self) -> IterMut<'_, TenantId, CsrIndex> { |
| 132 | self.partitions.iter_mut() |
| 133 | } |
| 134 | |
| 135 | /// Compact every partition. Mirrors `CsrIndex::compact` but across |
| 136 | /// the full set — maintenance handlers call this once per core. |
no outgoing calls