std::mersenne_twister_engine<UIntType,w,n,m,r,a,u,d,s,b,t,c,l,f>::operator()

From cppreference.com

 
 
 
 
std::mersenne_twister_engine
Member functions
Generation
mersenne_twister_engine::operator()
(C++11)
Characteristics
Non-member functions
(C++11)(C++11)(until C++20)
(C++11)(C++11)
 
result_type operator()();
(since C++11)

Generates a pseudo-random value. The state of the engine is advanced by one position.

Parameters

(none)

Return value

A pseudo-random number in [min(), max()].

Complexity

Amortized constant.

See also

(C++11)
advances the engine's state by a specified amount
(public member function)