/** * A fiber that has already failed with the specified value. * * @tsplus static effect/core/io/Fiber.Ops fail */ export function fail(e: E): Fiber { return Fiber.done(Exit.fail(e)) }