/** * Returns a stream that always fails with the specified `Cause`. * * @tsplus static effect/core/stream/Stream.Ops failCause */ export function failCause(cause: Cause): Stream { return Stream.fromEffect(Effect.failCause(cause)) }