Function _concat

  • concatenate any number of sequences to the end of a sequence

    Example

    concat(src, seq1, seq2, seq3)
    

    Type Parameters

    • T

    Parameters

    • src: Iterable<T>

      the source sequence

    • Rest ...sequences: Iterable<T>[]

      additional sequences whose items will be appended to the output sequence

    Returns Iterable<T>

Generated using TypeDoc