[[Rcpp::export]]
| 197 | |
| 198 | // [[Rcpp::export]] |
| 199 | IntegerVector integer_push_front( IntegerVector y ){ |
| 200 | y.push_front( 5 ) ; |
| 201 | return y ; |
| 202 | } |
| 203 | |
| 204 | // [[Rcpp::export]] |
| 205 | IntegerVector integer_insert( IntegerVector y){ |
nothing calls this directly
no test coverage detected