\brief Flatten all level recursively until reach a non-list type, and return a non-list type Array. \see internal::FlattenLogicalListRecursively
| 617 | /// |
| 618 | /// \see internal::FlattenLogicalListRecursively |
| 619 | Result<std::shared_ptr<Array>> FlattenRecursively( |
| 620 | MemoryPool* memory_pool = default_memory_pool()) const { |
| 621 | return internal::FlattenLogicalListRecursively(*this, memory_pool); |
| 622 | } |
| 623 | |
| 624 | /// \brief Construct FixedSizeListArray from child value array and value_length |
| 625 | /// |
nothing calls this directly
no test coverage detected