MCPcopy Create free account
hub / github.com/Notgnoshi/generative / operator==

Method operator==

generative/io/wkt-stream-reader.cpp:80–85  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

78}
79
80bool WKTStreamReader::GeometryIterator::operator==(const GeometryIterator& rhs) const
81{
82 // Because the wrapped data is ephemeral, iterators are equal unless we happen to know for sure
83 // that they're not.
84 return this->m_is_past_end == rhs.m_is_past_end && this->m_is_at_end == rhs.m_is_at_end;
85}
86
87bool WKTStreamReader::GeometryIterator::operator!=(const GeometryIterator& rhs) const
88{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected