/** * Fails with the error `None` if value is `Left`. * * @tsplus getter effect/core/stream/Stream right */ export function right( self: Stream> ): Stream, A2> { return self.mapError(Maybe.some).rightOrFail(Maybe.none) }