6 lines
132 B
Text
6 lines
132 B
Text
function flat_iterators(arr)
|
|
while any(a -> a isa Array, arr)
|
|
arr = collect(Iterators.flatten(arr))
|
|
end
|
|
arr
|
|
end
|