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

  1. Serializes the internal state of the pseudo-random number engine adaptor as a sequence of decimal numbers separated by one or more spaces, and inserts it to the stream ost. The fill character and the formatting flags of the stream are ignored and unaffected.

# Declarations

template< class CharT, class Traits >
friend std::basic_ostream<CharT,Traits>&
operator<<( std::basic_ostream<CharT,Traits>& ost,
shuffle_order_engine<>& e );

(since C++11)

template< class CharT, class Traits >
friend std::basic_istream<CharT,Traits>&
operator>>( std::basic_istream<CharT,Traits>& ist,
shuffle_order_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