[[Rcpp::export]]
| 624 | |
| 625 | // [[Rcpp::export]] |
| 626 | int character_find_(CharacterVector y){ |
| 627 | CharacterVector::iterator it = std::find( y.begin(), y.end(), "foo" ) ; |
| 628 | return std::distance( y.begin(), it ); |
| 629 | } |
| 630 | |
| 631 | // [[Rcpp::export]] |
| 632 | List character_create_(){ |