| 103 | inline R_xlen_t cols() const { return DataFrame_Impl::length(); } |
| 104 | |
| 105 | static DataFrame_Impl create(){ |
| 106 | return DataFrame_Impl() ; |
| 107 | } |
| 108 | template <typename... T> |
| 109 | static DataFrame_Impl create(const T&... args) { |
| 110 | return DataFrame_Impl::from_list(Parent::create(args...)); |
nothing calls this directly
no test coverage detected