| 32 | return cl->has_default_constructor(); |
| 33 | } |
| 34 | RCPP_FUN_2(SEXP, Module__get_function, XP_Module module, std::string fun) { |
| 35 | return module->get_function(fun); |
| 36 | } |
| 37 | RCPP_FUN_2(bool, Class__has_method, XP_Class cl, std::string m) { // #nocov start |
| 38 | return cl->has_method(m); |
| 39 | } |
nothing calls this directly
no test coverage detected