/** * A generator of uniformly distributed doubles between [0, 1]. The shrinker * will shrink toward `0`. * * @tsplus static effect/core/testing/Gen.Ops uniform */ export function uniform(): Gen { return Gen.fromEffectSample(Random.next.map(Sample.shrinkFractional(0))) }