Beispiel #1
0
bool operator == (const istreambuf_iterator<charT, traits>& lhs,
                  const istreambuf_iterator<charT, traits>& rhs)
{
    return lhs.equal(rhs);
}
Beispiel #2
0
 friend constexpr bool operator==(
   const istreambuf_iterator& lhs, const istreambuf_iterator& rhs) noexcept {
     return lhs.equal(rhs);
 }