/** * A constant generator of the specified value. * * @tsplus static effect/core/testing/Gen.Ops constant */ export function constant(a: A): Gen { return Gen(Stream.sync(Maybe.some(Sample.noShrink(a)))) }