GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
std::seed_seq::param(3) C++ Standard Libary std::seed_seq::param(3)

std::seed_seq::param - std::seed_seq::param


template< class OutputIt > (since C++11)
void param( OutputIt dest ) const;


Outputs the initial seed sequence that's stored in the std::seed_seq object.


dest - output iterator such that the expression *dest=rt is valid for a value rt
of result_type


-
OutputIt must meet the requirements of LegacyOutputIterator.


(none)


Throws only if an operation on dest throws.

// Run this code


#include <random>
#include <iostream>
#include <iterator>
int main()
{
std::seed_seq s1 = {-1, 0, 1};
s1.param(std::ostream_iterator<int>(std::cout, " "));
}


-1 0 1

2022.07.31 http://cppreference.com

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.