Standard C++ Library Reference ISO/IEC (VERSION3)
The template operator returns right < left.
operator>=
template<class RanIt>
 bool operator>=(
 const reverse_iterator<RanIt>& left,
 const reverse_iterator<RanIt>& right);
The template operator returns !(left < right).
operator+
template<class RanIt>
 reverse_iterator<RanIt> operator+(Diff off,
 const reverse_iterator<RanIt>& right);
The template operator returns right + off.
operator-
template<class RanIt>
 Diff operator-(
 const reverse_iterator<RanIt>& left,
 const reverse_iterator<RanIt>& right);
The template operator returns right.current - left.current [sic].
ostream_iterator
template<class Ty, class Elem = char,
 class Tr = char_traits<Elem> >
 class ostream_iterator
 : public iterator<output_iterator_tag,
 void, void, void, void> {
public:
 typedef Elem char_type;
 typedef Tr traits_type;
 typedef basic_ostream<Elem, Tr> ostream_type;
 ostream_iterator(ostream_type& ostr);
 ostream_iterator(ostream_type& ostr, const Elem *delim);
 ostream_iterator<Ty, Elem, Tr>& operator=(const Ty& val);
 ostream_iterator<Ty, Elem, Tr>& operator*();
 ostream_iterator<Ty, Elem, Tr>& operator++();
 ostream_iterator<Ty, Elem, Tr> operator++(int);










