/** * Succeeds with the specified value if this one fails with a typed error. * * @tsplus static effect/core/stream/Stream.Aspects orElseSucceed * @tsplus pipeable effect/core/stream/Stream orElseSucceed */ export function orElseSucceed(a: LazyArg) { return (self: Stream): Stream => self | Stream.sync(a) }