(items: T[])
| 38 | * Create a `LazyIterator` from an array of items. |
| 39 | */ |
| 40 | export function iteratorFromItems<T>(items: T[]): LazyIterator<T> { |
| 41 | return new ArrayIterator(items); |
| 42 | } |
| 43 | |
| 44 | /** |
| 45 | * Create a `LazyIterator` of incrementing integers. |
no outgoing calls
no test coverage detected
searching dependent graphs…