| 247 | virtual Status Append(SEXP) { return Status::NotImplemented("Append"); } |
| 248 | |
| 249 | virtual Status Extend(SEXP values, int64_t size, int64_t offset = 0) { |
| 250 | return Status::NotImplemented("Extend"); |
| 251 | } |
| 252 | |
| 253 | // by default, just delay the ->Extend(), i.e. not run in parallel |
| 254 | // implementations might redefine so that ->Extend() is run in parallel |
no test coverage detected