explicit subtract_with_carry_engine( result_type value = default_seed ); | (1) | (since C++11) |
template< class Sseq > explicit subtract_with_carry_engine( Sseq& s ); | (2) | (since C++11) |
subtract_with_carry_engine( const subtract_with_carry_engine& ); | (3) | (since C++11) (implicitly declared) |
Constructs the pseudo-random number engine.
The overload (2) only participates in overload resolution if Sseq
qualifies as a SeedSequence
. In particular, it is excluded from the set of candidate functions if Sseq
is convertible to result_type
.
value | - | seed value to use in the initialization of the internal state |
s | - | seed sequence to use in the initialization of the internal state |
sets the current state of the engine (public member function) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/numeric/random/subtract_with_carry_engine/subtract_with_carry_engine