Searched defs:ostream_iterator (Results 1 - 1 of 1) sorted by relevance

/external/stlport/stlport/stl/
H A D_stream_iterator.h58 // istream_iterator and ostream_iterator look very different if we're
162 class ostream_iterator: public iterator<output_iterator_tag, void, void, void, void> { class in inherits:iterator
166 typedef ostream_iterator<_TpP> _Self;
168 typedef ostream_iterator<_TpP, _CharT, _Traits> _Self;
177 ostream_iterator(ostream_type& __s) : _M_stream(&__s), _M_string(0) {} function in class:ostream_iterator
178 ostream_iterator(ostream_type& __s, const _CharT* __c) function in class:ostream_iterator
197 iterator_category(const ostream_iterator<_TpP>&) { return output_iterator_tag(); } argument
201 iterator_category(const ostream_iterator<_TpP, _CharT, _Traits>&) { return output_iterator_tag(); } argument

Completed in 923 milliseconds