std::philox_engine<UIntType,w,n,r,consts>::seed
From cppreference.com
< cpp | numeric | random | philox engine
void seed( result_type value = default_seed ); |
(1) | (since C++26) |
template< class SeedSeq > void seed( SeedSeq& seq ); |
(2) | (since C++26) |
Sets the state of the random-number engine.
Contents |
[edit] Parameters
value | - | seed value to use to set the state |
seq | - | seed sequence to use to set the state |
[edit] Exceptions
[edit] Complexity
1) Same as std::philox_engine(value).
2) Same as std::philox_engine(seq).
[edit] See also
constructs the engine (public member function) | |
sets the current counter of the engine (public member function) |