MCPcopy Create free account
hub / github.com/1a1a11a/libCacheSim / operator==

Method operator==

libCacheSim/dataStructure/sparsepp/spp.h:880–884  ·  view source on GitHub ↗

Comparisons.

Source from the content-addressed store, hash-verified

878
879 // Comparisons.
880 bool operator==(const iterator& it) const
881 {
882 return (row_current == it.row_current &&
883 (!row_current || row_current->is_marked() || col_current == it.col_current));
884 }
885
886 bool operator!=(const iterator& it) const { return !(*this == it); }
887

Callers

nothing calls this directly

Calls 1

is_markedMethod · 0.80

Tested by

no test coverage detected