[[Rcpp::export]]
| 399 | |
| 400 | // [[Rcpp::export]] |
| 401 | List list_push_front( List list ){ |
| 402 | list.push_front( 10 ) ; |
| 403 | list.push_front( "bar", "foo" ) ; |
| 404 | return list ; |
| 405 | } |
| 406 | |
| 407 | // [[Rcpp::export]] |
| 408 | List list_erase( List list ){ |
nothing calls this directly
no test coverage detected