/** * Returns a fiber that has already succeeded with the specified value. * * @tsplus static effect/core/io/Fiber.Ops succeed */ export function succeed(a: A): Fiber { return Fiber.done(Exit.succeed(a)) }