[[Rcpp::export]]
| 181 | |
| 182 | // [[Rcpp::export]] |
| 183 | std::string runit_CharacterMatrix_column_const( const CharacterMatrix m){ |
| 184 | CharacterMatrix::ConstColumn col = m.column(0) ; |
| 185 | std::string res( |
| 186 | std::accumulate( col.begin(), col.end(), std::string() ) |
| 187 | ) ; |
| 188 | return res ; |
| 189 | } |
| 190 | |
| 191 | // [[Rcpp::export]] |
| 192 | IntegerVector runit_GenericMatrix_column( GenericMatrix m ){ |