[[Rcpp::export]]
| 300 | |
| 301 | // [[Rcpp::export]] |
| 302 | NumericVector runit_const_Matrix_column( const NumericMatrix& m ){ |
| 303 | NumericMatrix::Column col1( m, 0 ) ; |
| 304 | NumericMatrix::Column col2( m, 1 ) ; |
| 305 | runit_const_Matrix_column_set(col1, col2) ; |
| 306 | return col1 ; |
| 307 | } |
| 308 | |
| 309 | // [[Rcpp::export]] |
| 310 | int mat_access_with_bounds_checking(const IntegerMatrix m, int i, int j) { |
nothing calls this directly
no test coverage detected