[[Rcpp::export]]
| 259 | |
| 260 | // [[Rcpp::export]] |
| 261 | NumericVector runit_mapply3_lambda(NumericVector xx, NumericVector yy, NumericVector zz){ |
| 262 | NumericVector res = mapply(xx, yy, zz, [](double x, double y, double z) { return x+y+z; }); |
| 263 | return res; |
| 264 | } |
| 265 | |
| 266 | // [[Rcpp::export]] |
| 267 | LogicalVector runit_mapply2_logical(NumericVector xx, NumericVector yy){ |