( iterable: Iterable<A, L>, chunkSize = DefaultChunkSize )
| 814 | * @since 4.0.0 |
| 815 | */ |
| 816 | export const fromIterableArray = <A, L>( |
| 817 | iterable: Iterable<A, L>, |
| 818 | chunkSize = DefaultChunkSize |
| 819 | ): Channel<Arr.NonEmptyReadonlyArray<A>, never, L> => fromIteratorArray(() => iterable[Symbol.iterator](), chunkSize) |
| 820 | |
| 821 | /** |
| 822 | * Creates a `Channel` that emits a single value and then ends. |
nothing calls this directly
no test coverage detected