[[Rcpp::export]]
| 107 | |
| 108 | // [[Rcpp::export]] |
| 109 | std::string runit_CharacterMatrix_row( CharacterMatrix m ){ |
| 110 | CharacterMatrix::Row first_row = m.row(0) ; |
| 111 | std::string res( |
| 112 | std::accumulate( |
| 113 | first_row.begin(), first_row.end(), std::string() ) ) ; |
| 114 | return res ; |
| 115 | } |
| 116 | |
| 117 | // [[Rcpp::export]] |
| 118 | std::string runit_CharacterMatrix_row_const( const CharacterMatrix m ){ |