| 152 | |
| 153 | template <> |
| 154 | bp::object axis_getitem<bha::category<>>(const bha::category<>& a, int i) { |
| 155 | if (i < 0 || i >= a.size()) throw std::out_of_range("index out of bounds"); |
| 156 | return bp::object(a.value(i)); |
| 157 | } |
| 158 | |
| 159 | #ifdef HAVE_NUMPY |
| 160 | template <typename Axis> |