/** * A generator of doubles. Shrinks toward '0'. * * @tsplus static effect/core/testing/Gen.Ops anyDouble */ export const anyDouble: Gen = Gen.fromEffectSample( Random.next.map(Sample.shrinkFractional(0)) )