Package: effect
Module: Stream
Returns a stream whose failures and successes have been lifted into an
Either. The resulting stream cannot fail, because the failures have been
exposed as part of the Either success case.
Signature
declare const either: <A, E, R>(self: Stream<A, E, R>) => Stream<Either.Either<A, E>, never, R>
Since v2.0.0