| 127 | } |
| 128 | |
| 129 | SlotCount usage() const { |
| 130 | SlotCount total = 0; |
| 131 | for (PoolCount i = 0; i < count_; i++) |
| 132 | total = SlotCount(total + pools_[i].usage()); |
| 133 | return total; |
| 134 | } |
| 135 | |
| 136 | size_t size() const { |
| 137 | return Pool::slotsToBytes(usage()); |
nothing calls this directly
no outgoing calls
no test coverage detected