Lines Matching refs:ostream_iterator
309 class ostream_iterator
317 ostream_iterator(ostream_type& s);
318 ostream_iterator(ostream_type& s, const charT* delimiter);
319 ostream_iterator(const ostream_iterator& x);
320 ~ostream_iterator();
321 ostream_iterator& operator=(const T& value);
323 ostream_iterator& operator*();
324 ostream_iterator& operator++();
325 ostream_iterator& operator++(int);
957 class _LIBCPP_TEMPLATE_VIS ostream_iterator
968 _LIBCPP_INLINE_VISIBILITY ostream_iterator(ostream_type& __s) _NOEXCEPT
970 … _LIBCPP_INLINE_VISIBILITY ostream_iterator(ostream_type& __s, const _CharT* __delimiter) _NOEXCEPT
972 _LIBCPP_INLINE_VISIBILITY ostream_iterator& operator=(const _Tp& __value_)
980 _LIBCPP_INLINE_VISIBILITY ostream_iterator& operator*() {return *this;}
981 _LIBCPP_INLINE_VISIBILITY ostream_iterator& operator++() {return *this;}
982 _LIBCPP_INLINE_VISIBILITY ostream_iterator& operator++(int) {return *this;}