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

Method variable

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

Construct an axis from bin edges. * * \param x sequence of bin edges. * \param label description of the axis. * \param uoflow whether to add under-/overflow bins. */

Source from the content-addressed store, hash-verified

283 * \param uoflow whether to add under-/overflow bins.
284 */
285 variable(std::initializer_list<value_type> x, string_view label = {},
286 uoflow_type uo = uoflow_type::on, const allocator_type& a = allocator_type())
287 : variable(x.begin(), x.end(), label, uo, a) {}
288
289 template <typename Iterator,
290 typename = boost::histogram::detail::requires_iterator<Iterator>>

Callers

nothing calls this directly

Calls 3

beginMethod · 0.45
endMethod · 0.45
get_allocatorMethod · 0.45

Tested by

no test coverage detected