MCPcopy Create free account
hub / github.com/ChaiScript/ChaiScript / operator ==

Method operator ==

unittests/catch.hpp:5393–5398  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5391 }
5392
5393 auto operator ==( iterator const& other ) const -> bool {
5394 return
5395 m_pos == other.m_pos &&
5396 m_stringIndex == other.m_stringIndex &&
5397 &m_column == &other.m_column;
5398 }
5399 auto operator !=( iterator const& other ) const -> bool {
5400 return !operator==( other );
5401 }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected