| 366 | // there are some sub-classes that are using it. |
| 367 | typedef typename boost::mpl::if_<boost::is_class<T>, T&,T>::type get_type; |
| 368 | get_type getitem(Py_ssize_t index) { return (*this)[canonical_index(index)]; } |
| 369 | typedef typename boost::mpl::if_<boost::is_class<T>,const T&,T>::type get_type_const; |
| 370 | get_type_const getitem(Py_ssize_t index) const { return (*this)[canonical_index(index)]; } |
| 371 |
nothing calls this directly
no test coverage detected