MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / compare

Method compare

json/jsoncpp.cpp:2971–2977  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2969ValueType Value::type() const { return type_; }
2970
2971int Value::compare(const Value& other) const {
2972 if (*this < other)
2973 return -1;
2974 if (*this > other)
2975 return 1;
2976 return 0;
2977}
2978
2979bool Value::operator<(const Value& other) const {
2980 int typeDelta = type_ - other.type_;

Callers 6

scoreFunction · 0.45
IsGNU3MangledStringMethod · 0.45
DemangleStringGNU3Method · 0.45
mainFunction · 0.45
mainFunction · 0.45
write_breakpointFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected