()
| 1507 | |
| 1508 | /** @internal */ |
| 1509 | export const last = <In>(): Sink.Sink<Option.Option<In>, In, In> => |
| 1510 | foldLeftChunks(Option.none<In>(), (s, input) => Option.orElse(Chunk.last(input), () => s)) |
| 1511 | |
| 1512 | /** @internal */ |
| 1513 | export const leftover = <L>(chunk: Chunk.Chunk<L>): Sink.Sink<void, unknown, L> => |
nothing calls this directly
no test coverage detected