| 783 | */ |
| 784 | template <typename T> |
| 785 | inline SEXP wrap_dispatch_unknown_importable(const T& object, ::Rcpp::traits::false_type) { |
| 786 | RCPP_DEBUG_1("wrap_dispatch_unknown_importable<%s>(., false )", DEMANGLE(T)) |
| 787 | return wrap_dispatch_eigen(object, typename traits::is_eigen_base<T>::type()); |
| 788 | } |
| 789 | |
| 790 | /** |
| 791 | * called when T is an Importer |
no test coverage detected