static constexpr result_type max() { return Engine::max(); }
概要
生成し得る値の最大値を取得する。
戻り値
元となる乱数生成器の最大値を返す。
計算量
定数時間
例
#include <iostream>
#include <random>
int main()
{
std::uint32_t max_value = std::ranlux24::max();
std::cout << max_value << std::endl;
}
出力
16777215
バージョン
言語
- C++11
処理系
- Clang: ??
- GCC: 4.7.2 ✅
- ICC: ??
- Visual C++: ??