MCPcopy Create free account
hub / github.com/EarlhamInst/KAT / equal

Method equal

deps/boost/boost/algorithm/string/find_iterator.hpp:326–337  ·  view source on GitHub ↗

comparison

Source from the content-addressed store, hash-verified

324
325 // comparison
326 bool equal( const split_iterator& Other ) const
327 {
328 bool bEof=eof();
329 bool bOtherEof=Other.eof();
330
331 return bEof || bOtherEof ? bEof==bOtherEof :
332 (
333 m_Match==Other.m_Match &&
334 m_Next==Other.m_Next &&
335 m_End==Other.m_End
336 );
337 }
338
339 public:
340 // operations

Callers

nothing calls this directly

Calls 2

eofFunction · 0.50
eofMethod · 0.45

Tested by

no test coverage detected