MCPcopy Create free account
hub / github.com/avast/retdec / operator<

Method operator<

src/fileformat/types/strings/string.cpp:72–77  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

70}
71
72bool String::operator<(const String& rhs) const
73{
74 return (fileOffset < rhs.fileOffset)
75 || (fileOffset == rhs.fileOffset && type < rhs.getType())
76 || (fileOffset == rhs.fileOffset && type == rhs.type && content < rhs.content);
77}
78
79bool String::operator==(const String& rhs) const
80{

Callers

nothing calls this directly

Calls 1

getTypeMethod · 0.45

Tested by

no test coverage detected