UNPKG

@rimbu/stream

Version:

Efficient structure representing a sequence of elements, with powerful operations for TypeScript

5 lines (4 loc) 181 B
import type { AsyncFastIterator } from '@rimbu/stream/async'; export interface AsyncFastIterable<T> extends AsyncIterable<T> { [Symbol.asyncIterator](): AsyncFastIterator<T>; }