( iterable: AsyncIterable<A, D>, onError: (error: unknown) => E )
| 1896 | * @since 4.0.0 |
| 1897 | */ |
| 1898 | export const fromAsyncIterableArray = <A, D, E>( |
| 1899 | iterable: AsyncIterable<A, D>, |
| 1900 | onError: (error: unknown) => E |
| 1901 | ): Channel<Arr.NonEmptyReadonlyArray<A>, E, D> => map(fromAsyncIterable(iterable, onError), Arr.of) |
| 1902 | |
| 1903 | /** |
| 1904 | * Maps the output of this channel using the specified function. |
nothing calls this directly
no test coverage detected