タイトル通り。https://wandbox.org/permlink/IQJOgUKdZ2k2KmMf #include <utility> #include <random> struct my_random_generator { typedef std::mt19937::result_type result_type; static constexpr result_type min() noexcept { return 0; } static constexpr result_type max() noexcept { return 1; } template<class... …