[[Rcpp::export]]
| 172 | |
| 173 | // [[Rcpp::export]] |
| 174 | std::string runit_CharacterMatrix_column( CharacterMatrix m){ |
| 175 | CharacterMatrix::Column col = m.column(0) ; |
| 176 | std::string res( |
| 177 | std::accumulate( col.begin(), col.end(), std::string() ) |
| 178 | ) ; |
| 179 | return res ; |
| 180 | } |
| 181 | |
| 182 | // [[Rcpp::export]] |
| 183 | std::string runit_CharacterMatrix_column_const( const CharacterMatrix m){ |