| 213 | } |
| 214 | |
| 215 | static std::shared_ptr<Array> SliceArrayWithOffsets(const Array& array, int64_t begin, |
| 216 | int64_t end) { |
| 217 | return array.Slice(begin, end - begin); |
| 218 | } |
| 219 | |
| 220 | template <typename ListArrayT> |
| 221 | Result<std::shared_ptr<Array>> FlattenListArray(const ListArrayT& list_array, |
no test coverage detected