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

Function InternalFunction_invoke

src/module.cpp:117–124  ·  view source on GitHub ↗

.External functions

Source from the content-addressed store, hash-verified

115
116// .External functions
117SEXP InternalFunction_invoke(SEXP args) {
118BEGIN_RCPP
119 SEXP p = CDR(args);
120 XP_Function fun(CAR(p)); p = CDR(p);
121 UNPACK_EXTERNAL_ARGS(cargs,p)
122 return fun->operator()(cargs);
123END_RCPP
124}
125
126SEXP Module__invoke(SEXP args) { // #nocov start
127BEGIN_RCPP

Callers

nothing calls this directly

Calls 1

operator()Method · 0.45

Tested by

no test coverage detected