Documentation
    Preparing search index...

    Class CombineableAbstract

    Index

    Constructors

    Methods

    Constructors

    Methods

    • Concatenate the given iterables to the end of this iterable.

      Type Parameters

      • A

      Parameters

      • this: Iterable<A>
      • ...iterables: Iterable<A, any, any>[]

      Returns Generator<A, void, any>

    • Zip the given iterables with this iterable.

      Type Parameters

      • A
      • B extends unknown[]

      Parameters

      • this: Iterable<A>
      • ...sources: { [K in string | number | symbol]: Iterable<B[K<K>], any, any> }

      Returns Iterable<[A, ...B[]]>