| 63 | void decrement() noexcept { --idx_; } |
| 64 | |
| 65 | void advance(int n) noexcept { idx_ += n; } |
| 66 | |
| 67 | typename Histogram::const_reference dereference() const noexcept { |
| 68 | return histogram_.storage_[idx_]; |
nothing calls this directly
no outgoing calls
no test coverage detected