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

Method CheckDoubleMaximum

rapidjson/schema.h:1182–1186  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1180 }
1181
1182 bool CheckDoubleMaximum(Context& context, double d) const {
1183 if (exclusiveMaximum_ ? d >= maximum_.GetDouble() : d > maximum_.GetDouble())
1184 RAPIDJSON_INVALID_KEYWORD_RETURN(GetMaximumString());
1185 return true;
1186 }
1187
1188 bool CheckDoubleMultipleOf(Context& context, double d) const {
1189 double a = std::abs(d), b = std::abs(multipleOf_.GetDouble());

Callers

nothing calls this directly

Calls 1

GetDoubleMethod · 0.80

Tested by

no test coverage detected