[[Rcpp::export]]
| 1175 | |
| 1176 | // [[Rcpp::export]] |
| 1177 | Rcpp::NumericVector int_row_means(Rcpp::IntegerMatrix x, bool na_rm = false) { |
| 1178 | return rowMeans(x, na_rm); |
| 1179 | } |
| 1180 | |
| 1181 | // [[Rcpp::export]] |
| 1182 | Rcpp::NumericVector lgl_row_means(Rcpp::LogicalMatrix x, bool na_rm = false) { |
nothing calls this directly
no test coverage detected