Iter
dropIter

🏃‍♂️ Skips the first N elements of an iterable.

Syntax

import { dropIter } from '@opentf/std';
 
dropIter<T>(
  iterable: Iterable<T>,
  n: number = 1
): Generator<T>;

Parameters

  • iterable: The source iterable (Array, Set, Map, etc.).
  • n: The number of elements to skip. Default: 1.

Returns

A Generator that yields the remaining elements.

Examples

const arr = [1, 2, 3, 4];
const iter = dropIter(arr, 2);
[...iter]; //=> [3, 4]

Related

Try