public static member function
<random>
std::independent_bits_engine::maxstatic constexpr result_type max();
Maximum value
Returns the maximum value potentially returned by member operator(), which for independent_bits_engine is 2w-1, where w is the second class template parameter (the number of significant bits per generated number).1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// independent_bits_engine::min and max
#include <iostream>
#include <chrono>
#include <cstdint>
#include <random>
int main ()
{
unsigned seed = std::chrono::system_clock::now().time_since_epoch().count();
std::independent_bits_engine<std::mt19937,64,std::uint_fast64_t> generator (seed);
std::cout << generator() << " is a random number between ";
std::cout << generator.min() << " and " << generator.max();
return 0;
}
4629903696969630447 is a random number between 0 and 18446744073709551615
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4