| 65 | void advance(int n) noexcept { idx_ += n; } |
| 66 | |
| 67 | typename Histogram::const_reference dereference() const noexcept { |
| 68 | return histogram_.storage_[idx_]; |
| 69 | } |
| 70 | |
| 71 | const Histogram& histogram_; |
| 72 | std::size_t idx_; |
nothing calls this directly
no outgoing calls
no test coverage detected