| 1353 | SelectionVector::SelectionVector(const Array& arr) : SelectionVector(arr.data()) {} |
| 1354 | |
| 1355 | int32_t SelectionVector::length() const { return static_cast<int32_t>(data_->length); } |
| 1356 | |
| 1357 | Result<std::shared_ptr<SelectionVector>> SelectionVector::FromMask( |
| 1358 | const BooleanArray& arr) { |
no outgoing calls