[[Rcpp::export]]
| 66 | |
| 67 | // [[Rcpp::export]] |
| 68 | SEXP runit_lang_fun( Function fun, IntegerVector x ){ |
| 69 | Language call( fun ); |
| 70 | call.push_back(x) ; |
| 71 | return Rcpp_fast_eval( call, R_GlobalEnv ) ; |
| 72 | } |
| 73 | |
| 74 | // [[Rcpp::export]] |
| 75 | Language runit_lang_inputop(){ |
nothing calls this directly
no test coverage detected