| 44 | } |
| 45 | |
| 46 | int_t UniformSampling::Next() const noexcept { return Next(0, table_size_); } |
| 47 | |
| 48 | int_t UniformSampling::Next(int begin, int end) const noexcept { |
| 49 | return (int_t)(ThreadLocalRandom() * (end - begin)) + begin; |
nothing calls this directly
no test coverage detected