| 21 | namespace random { |
| 22 | |
| 23 | uint32 SimplePhilox::Uniform(uint32 n) { |
| 24 | return ExactUniformInt<uint32>(n, [this]() { return Rand32(); }); |
| 25 | } |
| 26 | |
| 27 | uint64 SimplePhilox::Uniform64(uint64 n) { |
| 28 | return ExactUniformInt<uint64>(n, [this]() { return Rand64(); }); |
no outgoing calls