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 Parameter | Description |
|---|---|
T | Element 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>