[[Rcpp::export]]
| 124 | |
| 125 | // [[Rcpp::export]] |
| 126 | DataFrame DataFrame_PushFrontUnnamed(){ |
| 127 | NumericVector u(2); |
| 128 | NumericVector v(2); |
| 129 | DataFrame df = DataFrame::create(_["u"] = u); |
| 130 | df.push_front(v); |
| 131 | return df; |
| 132 | } |
| 133 | |
| 134 | // [[Rcpp::export]] |
| 135 | DataFrame DataFrame_PushFrontDataFrame(){ |
nothing calls this directly
no test coverage detected