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

/haiku/headers/cpp/
H A Diterator.h89 using __STD::ostream_iterator;
H A Dstl_iterator.h807 // When we have templatized iostreams, istream_iterator and ostream_iterator
875 class ostream_iterator { class
886 ostream_iterator(ostream& __s) : _M_stream(&__s), _M_string(0) {} function in class:ostream_iterator
887 ostream_iterator(ostream& __s, const char* __c) function in class:ostream_iterator
889 ostream_iterator<_Tp>& operator=(const _Tp& __value) {
894 ostream_iterator<_Tp>& operator*() { return *this; }
895 ostream_iterator<_Tp>& operator++() { return *this; }
896 ostream_iterator<_Tp>& operator++(int) { return *this; }
903 iterator_category(const ostream_iterator<_Tp>&) { argument

Completed in 41 milliseconds