| 115 | /// Get N-th axis (const version) |
| 116 | template <std::size_t N> |
| 117 | auto axis(mp11::mp_size_t<N>) const -> const detail::axis_at<N, axes_type>& { |
| 118 | detail::range_check<N>(axes_); |
| 119 | return detail::axis_get<N>(axes_); |
| 120 | } |
| 121 | |
| 122 | /// Get N-th axis |
| 123 | template <std::size_t N> |
no outgoing calls