| 55 | |
| 56 | template <typename Axis> |
| 57 | struct axis_value_view_to_python { |
| 58 | static PyObject* convert(const bha::value_view<Axis>& i) { |
| 59 | return bp::incref(bp::object(i.value()).ptr()); |
| 60 | } |
| 61 | }; |
| 62 | |
| 63 | template <typename Axis> |
| 64 | struct axis_interval_view_to_python { |
nothing calls this directly
no outgoing calls
no test coverage detected