MCPcopy Create free account
hub / github.com/KDE/kdevelop / operator>

Method operator>

kdevplatform/vcs/vcsdiff.cpp:96–96  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

94 bool operator<=(const KDevelop::DiffHunk& b) const { return lastLineIdx() <= b.headingLineIdx; }
95 bool operator<=(uint line) const { return lastLineIdx() <= line; }
96 bool operator>(const KDevelop::DiffHunk& b) const { return headingLineIdx > b.lastLineIdx(); }
97 bool operator>(uint line) const { return headingLineIdx > line; }
98 bool operator>=(const KDevelop::DiffHunk& b) { return headingLineIdx >= b.lastLineIdx(); }
99 bool operator>=(uint line) const { return headingLineIdx >= line; }

Callers

nothing calls this directly

Calls 1

lastLineIdxMethod · 0.80

Tested by

no test coverage detected