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

Function Module__invoke

src/module.cpp:126–135  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

124}
125
126SEXP Module__invoke(SEXP args) { // #nocov start
127BEGIN_RCPP
128 SEXP p = CDR(args);
129 XP_Module module(CAR(p)); p = CDR(p);
130 std::string fun = Rcpp::as<std::string>(CAR(p)); p = CDR(p);
131
132 UNPACK_EXTERNAL_ARGS(cargs,p)
133 return module->invoke(fun, cargs, nargs);
134END_RCPP
135} // #nocov end
136
137SEXP class__newInstance(SEXP args) {
138 SEXP p = CDR(args);

Callers

nothing calls this directly

Calls 1

invokeMethod · 0.45

Tested by

no test coverage detected