Returns lower edge of bin.
| 235 | |
| 236 | /// Returns lower edge of bin. |
| 237 | value_type lower(int i) const noexcept { |
| 238 | const value_type z = value_type(i) / base_type::size(); |
| 239 | return z * perimeter_ + phase_; |
| 240 | } |
| 241 | |
| 242 | bin_type operator[](int idx) const noexcept { return bin_type(idx, *this); } |
| 243 |
nothing calls this directly
no outgoing calls
no test coverage detected