| 141 | } |
| 142 | |
| 143 | template <typename Generator> bool randBool(Generator &g) |
| 144 | { |
| 145 | return randBoundsInclusive(g, 0, 1) == 0; |
| 146 | } |
| 147 | |
| 148 | template <typename T, typename Generator> T randBoundsInclusive(Generator &g, T min, T max) |
| 149 | { |
no test coverage detected