Determinism
public enum Determinism
The Determinism
affects the relative randomness of value generation
-
A random
Determinism
seeded byseed
Subsequent runs using the sameContext
are guaranteed to produce values in the same orderDeclaration
Swift
case predetermined(seed: UInt64)
-
A random
Determinism
seeded by a random value Subsequent runs using the sameContext
will generate completely different random valuesDeclaration
Swift
case random