| 44 | */ |
| 45 | template <typename F, typename RESULT_TYPE, typename... Us> |
| 46 | SEXP call(const F& fun, SEXP* args) { |
| 47 | return internal::call_impl(fun, args, |
| 48 | internal::type_pack<RESULT_TYPE, Us...>{}, |
| 49 | traits::make_index_sequence<sizeof...(Us)>{}); |
| 50 | } |
| 51 | } // namespace Rcpp |
| 52 | |
| 53 | #endif |
no test coverage detected