| 103 | class CppFunctionN : public CppFunction { |
| 104 | public: |
| 105 | CppFunctionN(RESULT_TYPE (*fun)(T...), const char* docstring = 0) : CppFunction(docstring), ptr_fun(fun) {} |
| 106 | |
| 107 | SEXP operator()(SEXP* args) { |
| 108 | BEGIN_RCPP |
nothing calls this directly
no outgoing calls
no test coverage detected