[[Rcpp::export]]
| 54 | |
| 55 | // [[Rcpp::export]] |
| 56 | std::deque<int> as_deque_int( SEXP x){ return as< std::deque<int> >(x) ; } |
| 57 | |
| 58 | // [[Rcpp::export]] |
| 59 | std::list<int> as_list_int( SEXP x){ return as< std::list<int> >(x) ; } |
nothing calls this directly
no outgoing calls
no test coverage detected