| 26 | |
| 27 | template <typename T> |
| 28 | inline SEXP wrap(const T& object){ |
| 29 | RCPP_DEBUG_1( "inline SEXP wrap<%s>(const T& object)", DEMANGLE(T) ) |
| 30 | return internal::wrap_dispatch( object, typename ::Rcpp::traits::wrap_type_traits<T>::wrap_category() ) ; |
| 31 | } |
| 32 | |
| 33 | template <typename T> |
| 34 | inline SEXP module_wrap_dispatch( const T& obj, Rcpp::traits::normal_wrap_tag ){ |
no test coverage detected