Options
All
  • Public
  • Public/Protected
  • All
Menu

Module iterable/concat

Index

References

Functions

References

Renames and re-exports concat

Functions

  • concat<T>(...iterables: Iterable<T>[]): Iterable<T>
  • Returns the result of concatenating the given iterables.

    example
     concat([4, 5, 6], [1, 2, 3]);   //=> Iterable<[4, 5, 6, 1, 2, 3]>
    concat([], []); //=> Iterable<[]>

    Type parameters

    • T

    Parameters

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

      The iterable list

    Returns Iterable<T>

    A list consisting of the elements of iterables

Generated using TypeDoc