template<class OutputIt> void param( OutputIt dest)const; | | (since C++11) |
| | |
Copies the stored seeds to the range beginning withdest. Equivalent tostd::copy(v
.begin(),
v
.end(), dest);.
If values of typeresult_type
are notwritable todest, the program is ill-formed.
IfOutputIt
does not satisfy the requirements ofLegacyOutputIterator, the behavior is undefined.
[edit]Parameters
dest | - | the beginning iterator of the output range |
[edit]Exceptions
Only throws the exceptions thrown by the operations ondest.
[edit]Example
[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 |
---|
LWG 2180 | C++11 | seed_seq::param is non-throwing | it may throw exceptions |