| 149 | /// Apply unary functor/function to each axis |
| 150 | template <typename Unary> |
| 151 | void for_each_axis(Unary&& unary) const { |
| 152 | detail::for_each_axis(axes_, std::forward<Unary>(unary)); |
| 153 | } |
| 154 | |
| 155 | /// Fill histogram with a value tuple |
| 156 | template <typename... Ts> |
no test coverage detected