MCPcopy Create free account
hub / github.com/boostorg/histogram / lower

Method lower

include/boost/histogram/axis/types.hpp:237–240  ·  view source on GitHub ↗

Returns lower edge of bin.

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected