| 262 | } |
| 263 | |
| 264 | inline attribute_hidden void* dataptr(SEXP x){ |
| 265 | typedef void* (*Fun)(SEXP); |
| 266 | static Fun fun = GET_CALLABLE("dataptr"); |
| 267 | return fun(x); |
| 268 | } |
| 269 | |
| 270 | inline attribute_hidden Rcpp::Module* getCurrentScope(){ |
| 271 | typedef Rcpp::Module* (*Fun)(void); |
no outgoing calls
no test coverage detected