Lines Matching refs:istreambuf_iterator
573 class istreambuf_iterator
589 istreambuf_iterator() noexcept; // constexpr since C++11
590 constexpr istreambuf_iterator(default_sentinel_t) noexcept; // since C++20
591 istreambuf_iterator(istream_type& s) noexcept;
592 istreambuf_iterator(streambuf_type* s) noexcept;
593 istreambuf_iterator(a-private-type) noexcept;
597 istreambuf_iterator& operator++();
600 bool equal(const istreambuf_iterator& b) const;
601 friend bool operator==(const istreambuf_iterator& i, default_sentinel_t s); // since C++20
605 bool operator==(const istreambuf_iterator<charT,traits>& a,
606 const istreambuf_iterator<charT,traits>& b);
608 bool operator!=(const istreambuf_iterator<charT,traits>& a,
609 const istreambuf_iterator<charT,traits>& b); // until C++20
697 #include <__iterator/istreambuf_iterator.h>