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