Class IterableFlatten<I_ITEM>

  • Type Parameters:
    I_ITEM - the type of object in the iterable
    All Implemented Interfaces:
    Function<Iterable<I_ITEM>,​I_ITEM>

    public class IterableFlatten<I_ITEM>
    extends KorypheFunction<Iterable<I_ITEM>,​I_ITEM>
    A IterableFlatten is a Function that takes items from an Iterable and combines them into a single result based on a provided BinaryOperator. Any null items are ignored.