I need something like FluentIterable.transformAndConcat
, however the transform function shall be called only once for all elements in my FluentIterable (so all elements of the FluentIterable shall be passed to my function at once) instead of once for each single element.
Is there anything for this case in Guava, that I missed?
Thanks for any hint!