table of contents
std::linear_congruential_engine::operator()(3) | C++ Standard Libary | std::linear_congruential_engine::operator()(3) |
NAME¶
std::linear_congruential_engine::operator() - std::linear_congruential_engine::operator()
Synopsis¶
result_type operator()(); (since C++11)
Generates a pseudo-random value. The state of the engine is advanced by one
position.
This section is incomplete
Parameters¶
(none)
Return value¶
A pseudo-random number in [min(), max()].
Complexity¶
Amortized constant.
See also¶
discard advances the engine's state by a specified amount
(C++11) (public member function)
Category:¶
* Todo without reason
2024.06.10 | http://cppreference.com |