[[Rcpp::export]]
| 149 | |
| 150 | // [[Rcpp::export]] |
| 151 | Pairlist runit_pl_push_front(){ |
| 152 | Pairlist p ; |
| 153 | p.push_front( 1 ) ; |
| 154 | p.push_front( 10.0 ) ; |
| 155 | p.push_front( "foo" ) ; |
| 156 | p.push_front( Named( "foobar", 10) ) ; |
| 157 | return p ; |
| 158 | } |
| 159 | |
| 160 | |
| 161 | // [[Rcpp::export]] |
nothing calls this directly
no test coverage detected