operator<<,>>(std::mersenne_twister_engine)

  1. Writes the textual representation of the current state of e to os with fmtflags set to std::ios_base::dec | std::ios_base::left and the fill character set to the space character.

# Declarations

template< class CharT, class Traits >
friend std::basic_ostream<CharT, Traits>&
operator<<( std::basic_ostream<CharT, Traits>& os,
const mersenne_twister_engine& e );

(since C++11)

template< class CharT, class Traits >
friend std::basic_istream<CharT, Traits>&
operator>>( std::basic_istream<CharT, Traits>& is,
mersenne_twister_engine& e );

(since C++11)

# Parameters

# Defect reports

DRApplied toBehavior as publishedCorrect behavior
LWG 3519C++11the form of insertion and extraction operators were unspecifiedspecified to be hidden friends