import { Succeed } from "@tsplus/stdlib/io/Eval/definition" /** * Constructs a computation that always succeeds with the specified value. * * @tsplus static Eval.Ops succeedNow */ export function succeedNow(a: A): Eval { return new Succeed(() => a) }