std::istreambuf_iterator<CharT,Traits>::equal
来自cppreference.com
                    
                                        
                    < cpp | iterator | istreambuf iterator
                    
                                                            
                    |   bool equal( const istreambuf_iterator& it ) const;  | 
||
检查 *this 与 it 是否均合法或均非法,无关乎它们所用的流缓冲。
参数
| it | - | 要比较的另一流缓冲迭代器 | 
返回值
若 *this 与 it 均合法或均非法则无 true ,否则为 false 。
异常
(无)