| 50 | |
| 51 | template <typename T, typename... TL> |
| 52 | int32_t staticRandomI32(T const& d, TL const&... rest) { |
| 53 | return (int32_t)staticRandomU32(d, rest...); |
| 54 | } |
| 55 | |
| 56 | template <typename T, typename... TL> |
| 57 | int32_t staticRandomI32Range(int32_t min, int32_t max, T const& d, TL const&... rest) { |
no test coverage detected