Home
last modified time | relevance | path

Searched defs:reduce_command (Results 1 – 2 of 2) sorted by relevance

/third_party/boost/boost/histogram/detail/
Dreduce_command.hpp21 struct reduce_command { struct
22 static constexpr unsigned unset = static_cast<unsigned>(-1);
23 unsigned iaxis = unset;
24 enum class range_t : char {
28 } range = range_t::none;
29 union {
32 } begin{0}, end{0};
33 unsigned merge = 0; // default value indicates unset option
34 bool crop = false;
36 bool is_ordered = true;
[all …]
/third_party/boost/boost/histogram/algorithm/
Dreduce.hpp34 using reduce_command = detail::reduce_command; typedef