Skip to content

Latest commit

 

History

History
58 lines (42 loc) · 1023 Bytes

File metadata and controls

58 lines (42 loc) · 1023 Bytes

max

  • random[meta header]
  • std[meta namespace]
  • subtract_with_carry_engine[meta class]
  • function[meta id-type]
  • cpp11[meta cpp]
static constexpr result_type max();

概要

生成し得る値の最大値を取得する。

戻り値

2^w - 1を返す。

計算量

定数時間

#include <iostream>
#include <random>
#include <cstdint>

int main()
{
  std::uint32_t max_value = std::ranlux24_base::max();
  std::cout << max_value << std::endl;
}
  • max()[color ff0000]
  • std::ranlux24_base[link /reference/random/ranlux24_base.md]
  • std::uint32_t[link /reference/cstdint/uint32_t.md]

出力

16777215

バージョン

言語

  • C++11

処理系

  • Clang: ??
  • GCC: 4.7.2 [mark verified]
  • ICC: ??
  • Visual C++: 2010 [mark verified], 2012 [mark verified], 2013 [mark verified], 2015 [mark verified], 2017 [mark verified]

参照