Namespaces
Variants
Views
Actions

std::{{{1}}}::{{{1}}}

From cppreference.com
 
 
 
 
{{{1}}}() : {{{1}}}(default_seed) {}
(1) (since C++11)
explicit {{{1}}}( result_type value );
(2) (since C++11)
template< class Sseq >
explicit {{{1}}}( Sseq& s );
(3) (since C++11)
{{{1}}}( const {{{1}}}& );
(4) (since C++11)
(implicitly declared)

Constructs the pseudo-random number engine.

1) Default constructor. Seeds the engine with default_seed.

The overload (3) 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.

Contents

[edit] Parameters

value - seed value to use in the initialization of the internal state
s - seed sequence to use in the initialization of the internal state

[edit] Complexity

[edit] Defect reports

The following behavior-changing defect reports were applied retroactively to previously published C++ standards.

DR Applied to Behavior as published Correct behavior
P0935R0 C++11 default constructor was explicit made implicit

[edit] See also

sets the current state of the engine
(public member function of std::{{{1}}}) [edit]