| 7272 | explicit Random(UInt32 seed) : state_(seed) {} |
| 7273 | |
| 7274 | void Reseed(UInt32 seed) { state_ = seed; } |
| 7275 | |
| 7276 | // Generates a random number from [0, range). Crashes if 'range' is |
| 7277 | // 0 or greater than kMaxRange. |
nothing calls this directly
no outgoing calls
no test coverage detected