Determinism

public enum Determinism

The Determinism affects the relative randomness of value generation

  • A random Determinism seeded by seed Subsequent runs using the same Context are guaranteed to produce values in the same order

    Declaration

    Swift

    case predetermined(seed: UInt64)
  • A random Determinism seeded by a random value Subsequent runs using the same Context will generate completely different random values

    Declaration

    Swift

    case random