| 91 | void* as_module_object_internal(SEXP obj); |
| 92 | |
| 93 | template <typename T> object<T> as_module_object(SEXP x) { |
| 94 | return (T*) as_module_object_internal(x); |
| 95 | } |
| 96 | |
| 97 | /** handling object<T> */ |
| 98 | template <typename T> T as(SEXP x, ::Rcpp::traits::r_type_module_object_const_pointer_tag) { |
nothing calls this directly
no test coverage detected