[[Rcpp::export]]
| 265 | |
| 266 | // [[Rcpp::export]] |
| 267 | LogicalVector runit_mapply2_logical(NumericVector xx, NumericVector yy){ |
| 268 | return all(mapply(xx, yy, std::plus<double>()) < 100.0); |
| 269 | } |
| 270 | |
| 271 | // [[Rcpp::export]] |
| 272 | List runit_mapply2_list(IntegerVector xx, IntegerVector yy){ |