.External functions
| 115 | |
| 116 | // .External functions |
| 117 | SEXP InternalFunction_invoke(SEXP args) { |
| 118 | BEGIN_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); |
| 123 | END_RCPP |
| 124 | } |
| 125 | |
| 126 | SEXP Module__invoke(SEXP args) { // #nocov start |
| 127 | BEGIN_RCPP |
nothing calls this directly
no test coverage detected