[[Rcpp::export]]
| 597 | |
| 598 | // [[Rcpp::export]] |
| 599 | std::string character_const_iterator2( const CharacterVector letters ){ |
| 600 | std::string res(std::accumulate(letters.begin(), letters.end(), std::string())); |
| 601 | return res ; |
| 602 | } |
| 603 | |
| 604 | // [[Rcpp::export]] |
| 605 | CharacterVector character_reverse( CharacterVector y ){ |