Class StringJoin<I_ITEM>

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

    public class StringJoin<I_ITEM>
    extends KorypheFunction<Iterable<I_ITEM>,​String>
    A StringJoin is a Function which joins together all items in the provided Iterable into a single output string, separated by a supplied delimiter.

    The ToString function is delegated to in order to create a string representation of each item in the Iterable.