Skip to content

tyneq


tyneq / EnumeratorFactory

Interface: EnumeratorFactory<T>

Defined in: src/types/core.ts:37

A factory that produces a fresh Enumerator on demand.

Extended by

Type Parameters

Type ParameterDescription
TElement type.

Methods

getEnumerator()

getEnumerator(): Enumerator<T>

Defined in: src/types/core.ts:39

Returns a new, independent enumerator starting at the beginning of the sequence.

Returns

Enumerator<T>