MCPcopy Create free account
hub / github.com/Achain-Dev/Achain / equal

Method equal

include/win/boost/algorithm/string/find_iterator.hpp:139–149  ·  view source on GitHub ↗

comparison

Source from the content-addressed store, hash-verified

137
138 // comparison
139 bool equal( const find_iterator& Other ) const
140 {
141 bool bEof=eof();
142 bool bOtherEof=Other.eof();
143
144 return bEof || bOtherEof ? bEof==bOtherEof :
145 (
146 m_Match==Other.m_Match &&
147 m_End==Other.m_End
148 );
149 }
150
151 public:
152 // operations

Callers

nothing calls this directly

Calls 2

eofFunction · 0.50
eofMethod · 0.45

Tested by

no test coverage detected