[[Rcpp::export]]
| 591 | |
| 592 | // [[Rcpp::export]] |
| 593 | std::string character_iterator2( CharacterVector letters ){ |
| 594 | std::string res(std::accumulate(letters.begin(), letters.end(), std::string())); |
| 595 | return res ; |
| 596 | } |
| 597 | |
| 598 | // [[Rcpp::export]] |
| 599 | std::string character_const_iterator2( const CharacterVector letters ){ |