| 124 | |
| 125 | template <typename T> |
| 126 | inline typename sugar_const_iterator_type<T>::type get_const_begin__impl(const T& obj, Rcpp::traits::true_type ){ |
| 127 | return obj.begin() ; |
| 128 | } |
| 129 | template <typename T> |
| 130 | inline typename sugar_const_iterator_type<T>::type get_const_begin__impl(const T& obj, Rcpp::traits::false_type ){ |
| 131 | typedef typename sugar_const_iterator_type<T>::type const_iterator ; |
no test coverage detected