| 27 | |
| 28 | template <typename T> |
| 29 | std::wstring as_string_elt__impl( SEXP x, R_xlen_t i, Rcpp::traits::true_type ){ |
| 30 | const char* y = char_get_string_elt( x, i ) ; |
| 31 | return std::wstring(y, y+strlen(y) ) ; |
| 32 | } |
| 33 | |
| 34 | template <typename T> |
| 35 | std::string as_string_elt__impl( SEXP x, R_xlen_t i, Rcpp::traits::false_type ){ |
nothing calls this directly
no test coverage detected