[[Rcpp::export]]
| 377 | |
| 378 | // [[Rcpp::export]] |
| 379 | List list_iterator_( List input, Function fun){ |
| 380 | List output( input.size() ) ; |
| 381 | std::transform( input.begin(), input.end(), output.begin(), fun ) ; |
| 382 | output.names() = input.names() ; |
| 383 | return output ; |
| 384 | } |
| 385 | |
| 386 | // [[Rcpp::export]] |
| 387 | int list_name_indexing( List df ){ |