(min: number, max: number)
| 1072 | } |
| 1073 | |
| 1074 | takeBetween(min: number, max: number): Effect.Effect<Chunk.Chunk<A>> { |
| 1075 | return core.suspend(() => takeRemainderLoop(this, min, max, Chunk.empty())) |
| 1076 | } |
| 1077 | } |
| 1078 | |
| 1079 | /** @internal */ |
nothing calls this directly
no test coverage detected