| 567 | |
| 568 | static RandomOptions FromSystemRandom() { return RandomOptions{SystemRandom, 0}; } |
| 569 | static RandomOptions FromSeed(uint64_t seed) { return RandomOptions{Seed, seed}; } |
| 570 | |
| 571 | RandomOptions(Initializer initializer, uint64_t seed); |
| 572 | RandomOptions(); |
no outgoing calls