MCPcopy Create free account
hub / github.com/RcppCore/Rcpp / runit_mapply3_lambda

Function runit_mapply3_lambda

inst/tinytest/cpp/sugar.cpp:261–264  ·  view source on GitHub ↗

[[Rcpp::export]]

Source from the content-addressed store, hash-verified

259
260// [[Rcpp::export]]
261NumericVector 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]]
267LogicalVector runit_mapply2_logical(NumericVector xx, NumericVector yy){

Callers

nothing calls this directly

Calls 1

mapplyFunction · 0.50

Tested by

no test coverage detected