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. */
| 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>> |
nothing calls this directly
no test coverage detected