Standard C++ Library Reference ISO/IEC (VERSION3)
flush
template class<Elem, Tr>
 basic_ostream<Elem, Tr>& flush(basic_ostream<Elem, Tr>& ostr);
The manipulator calls ostr.flush(). It returns ostr.
operator<<
template<class Elem, class Tr>
 basic_ostream<Elem, Tr>&
 operator<<(basic_ostream<Elem, Tr>& ostr,
 const Elem *str);
template<class Elem, class Tr>
 basic_ostream<Elem, Tr>&
 operator<<(basic_ostream<Elem, Tr>& ostr,
 Elem ch);
 template<class Elem, class Tr>
 basic_ostream<Elem, Tr>&
 operator<<(basic_ostream<Elem, Tr>& ostr,
 const char *str);
 template<class Elem, class Tr>
 basic_ostream<Elem, Tr>&
 operator<<(basic_ostream<Elem, Tr>& ostr,
 char ch);
 template<class Tr>
 basic_ostream<char, Tr>&
 operator<<(basic_ostream<char, Tr>& ostr,
 const char *str);
 template<class Tr>
 basic_ostream<char, Tr>&
 operator<<(basic_ostream<char, Tr>& ostr,
 char ch);
template<class Tr>
 basic_ostream<char, Tr>&
 operator<<(basic_ostream<char, Tr>& ostr,
 const signed char *str);
template<class Tr>
 basic_ostream<char, Tr>&
 operator<<(basic_ostream<char, Tr>& ostr,
 signed char ch);
template<class Tr>
 basic_ostream<char, Tr>&
 operator<<(basic_ostream<char, Tr>& ostr,










