[[Rcpp::export]]
| 51 | |
| 52 | // [[Rcpp::export]] |
| 53 | std::vector<std::string> as_vector_string( SEXP x){ return as< std::vector<std::string> >(x) ; } |
| 54 | |
| 55 | // [[Rcpp::export]] |
| 56 | std::deque<int> as_deque_int( SEXP x){ return as< std::deque<int> >(x) ; } |
nothing calls this directly
no outgoing calls
no test coverage detected