(self: Stream.Stream<A, E, R>)
| 2969 | |
| 2970 | /** @internal */ |
| 2971 | export const forever = <A, E, R>(self: Stream.Stream<A, E, R>): Stream.Stream<A, E, R> => |
| 2972 | new StreamImpl(channel.repeated(toChannel(self))) |
| 2973 | |
| 2974 | /** @internal */ |
| 2975 | export const fromAsyncIterable = <A, E>( |
no test coverage detected