| 1090 | } |
| 1091 | |
| 1092 | void DelayedExtend(SEXP values, int64_t size, RTasks& tasks) override { |
| 1093 | // NOTE: because Extend::[]append_value() calls Extend() on the |
| 1094 | // value converter, which might require a setup step, it feels |
| 1095 | // complicated to run this task concurrently. |
| 1096 | // |
| 1097 | // TODO: perhaps allow running concurrently in some cases, e.g. list(int32(!altrep)) |
| 1098 | tasks.Append(false, [this, values, size]() { return this->Extend(values, size); }); |
| 1099 | } |
| 1100 | }; |
| 1101 | |
| 1102 | class RStructConverter; |