| 128 | : obj(o), axes(a), success(s) {} |
| 129 | template <typename A> |
| 130 | void operator()(const A&) const { |
| 131 | if (success) return; |
| 132 | bp::extract<const A&> get_axis(obj); |
| 133 | if (get_axis.check()) { |
| 134 | axes.emplace_back(get_axis()); |
| 135 | success = true; |
| 136 | } |
| 137 | } |
| 138 | }; |
| 139 | |
| 140 | bp::object histogram_axis(const pyhistogram& self, int i) { |
nothing calls this directly
no outgoing calls
no test coverage detected