( self: Stream.Stream<A, E, R> )
| 8661 | |
| 8662 | /** @internal */ |
| 8663 | export const zipWithPreviousAndNext = <A, E, R>( |
| 8664 | self: Stream.Stream<A, E, R> |
| 8665 | ): Stream.Stream<[Option.Option<A>, A, Option.Option<A>], E, R> => |
| 8666 | pipe( |
| 8667 | zipWithNext(zipWithPrevious(self)), |
| 8668 | map(([[prev, curr], next]) => [prev, curr, pipe(next, Option.map((tuple) => tuple[1]))]) |
| 8669 | ) |
| 8670 | |
| 8671 | /** @internal */ |
| 8672 | const zipChunks = <A, B, C>( |
nothing calls this directly
no test coverage detected