Skip to content

intersection() function

iterable1 に含まれる iterable2 のすべての要素の Iterable/AsyncIterable を返します。

Signature:

typescript
declare function intersection<T>(
  iterable1: Iterable<T>,
  iterable2: Iterable<T>,
): IterableIterator<T>;

Example

ts
const iter = intersection([2, 1], [2, 3, 4]);
iter.next(); // {value: 2, done:false}
iter.next(); // {value: undefined, done: true}

Open Source Code

Released under the Apache-2.0 License.