operator<<(std::linear_congruential_engine), operator>>(std::linear_congruential_engine)
From Cppreference
< cpp | numeric | random | linear congruential engine
template< class CharT, class Traits, class ResultType >
std::basic_ostream<CharT,Traits>& operator<<( std::basic_ostream<CharT,Traits>& ost, |
(1) | |
template< class CharT, class Traits, class ResultType >
std::basic_istream<CharT,Traits>& operator>>( std::basic_istream<CharT,Traits>& ist, |
(2) | |
Performs stream input and output operations on pseudo-random number engine e.
This section is incomplete |
[edit] Parameters
ost | - | output stream to insert the data to |
ist | - | input stream to extract the data from |
e | - | pseudo-random number engine |
[edit] Return value
1) ost
2) ist
[edit] Complexity
This section is incomplete |