( self: Channel<Take.Take<OutElem, OutErr, OutDone>, OutErr2, OutDone2, InElem, InErr, InDone, Env> )
| 3115 | * @since 4.0.0 |
| 3116 | */ |
| 3117 | export const flattenTake = < |
| 3118 | OutElem, |
| 3119 | OutErr, |
| 3120 | OutDone, |
| 3121 | OutErr2, |
| 3122 | OutDone2, |
| 3123 | InElem, |
| 3124 | InErr, |
| 3125 | InDone, |
| 3126 | Env |
| 3127 | >( |
| 3128 | self: Channel<Take.Take<OutElem, OutErr, OutDone>, OutErr2, OutDone2, InElem, InErr, InDone, Env> |
| 3129 | ): Channel<Arr.NonEmptyReadonlyArray<OutElem>, OutErr | OutErr2, OutDone, InElem, InErr, InDone, Env> => |
| 3130 | mapEffectSequential(self, Take.toPull) as any |
| 3131 | |
| 3132 | /** |
| 3133 | * Creates a new channel that consumes all output from the source channel |
nothing calls this directly
no test coverage detected