[[Rcpp::export]]
| 36 | |
| 37 | // [[Rcpp::export]] |
| 38 | std::string as_string( SEXP x){ return as<std::string>( x ); } |
| 39 | |
| 40 | // [[Rcpp::export]] |
| 41 | std::vector<int> as_vector_int( SEXP x){ return as< std::vector<int> >(x) ; } |
nothing calls this directly
no outgoing calls
no test coverage detected