[[Rcpp::export]]
| 101 | |
| 102 | // [[Rcpp::export]] |
| 103 | double runit_NumericMatrix_row_const( const NumericMatrix m){ |
| 104 | NumericMatrix::ConstRow first_row = m.row(0) ; |
| 105 | return std::accumulate( first_row.begin(), first_row.end(), 0.0 ) ; |
| 106 | } |
| 107 | |
| 108 | // [[Rcpp::export]] |
| 109 | std::string runit_CharacterMatrix_row( CharacterMatrix m ){ |