2020-12-28 19:15:37 +04:00
|
|
|
/* This file is part of the dynarmic project.
|
|
|
|
* Copyright (c) 2020 MerryMage
|
|
|
|
* SPDX-License-Identifier: 0BSD
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <random>
|
|
|
|
#include <type_traits>
|
|
|
|
|
2021-05-30 10:36:49 +04:00
|
|
|
template<typename T>
|
2020-12-28 19:15:37 +04:00
|
|
|
T RandInt(T min, T max) {
|
|
|
|
static_assert(std::is_integral_v<T>, "T must be an integral type.");
|
|
|
|
static_assert(!std::is_same_v<T, signed char> && !std::is_same_v<T, unsigned char>,
|
|
|
|
"Using char with uniform_int_distribution is undefined behavior.");
|
|
|
|
|
|
|
|
static std::random_device rd;
|
|
|
|
static std::mt19937 mt(rd());
|
|
|
|
std::uniform_int_distribution<T> rand(min, max);
|
|
|
|
return rand(mt);
|
|
|
|
}
|