I would like to flatten arbitrary deeply nested collections/structures of elements of some type T in Java, optimally with
Is there a java library which can handle this?
Guava seems to only handle one nesting level, i.e. Collection<Collection<T>>
--flatten--> Collection<T>
.
lambdaj looks promising: can I somehow combine on()
, asIterator()
and flattenIterator()
to achieve this? In a statically type-safe manner?
Guava will probably support this eventually :
http://code.google.com/p/guava-libraries/issues/detail?id=174
(It might be easiest to read that from the bottom up, since the thinking on it has shifted a few times over its lifetime.)