Materialize and then duplicate data2
| 148 | |
| 149 | // Materialize and then duplicate data2 |
| 150 | static SEXP Duplicate(SEXP alt, Rboolean /* deep */) { |
| 151 | return Rf_duplicate(Impl::Materialize(alt)); |
| 152 | } |
| 153 | |
| 154 | static SEXP Coerce(SEXP alt, int type) { |
| 155 | return Rf_coerceVector(Impl::Materialize(alt), type); |
nothing calls this directly
no test coverage detected