( ref: Ref.Ref<Chunk.Chunk<InElem>> )
| 127 | |
| 128 | /** @internal */ |
| 129 | export const bufferChunk = <InElem, InErr, InDone>( |
| 130 | ref: Ref.Ref<Chunk.Chunk<InElem>> |
| 131 | ): Channel.Channel<Chunk.Chunk<InElem>, Chunk.Chunk<InElem>, InErr, InErr, InDone, InDone> => |
| 132 | buffer({ |
| 133 | empty: Chunk.empty(), |
| 134 | isEmpty: Chunk.isEmpty, |
| 135 | ref |
| 136 | }) |
| 137 | |
| 138 | /** @internal */ |
| 139 | export const catchAll = dual< |
nothing calls this directly
no test coverage detected
searching dependent graphs…