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

Method CheckDoubleMinimum

rapidjson/schema.h:1176–1180  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1174 }
1175
1176 bool CheckDoubleMinimum(Context& context, double d) const {
1177 if (exclusiveMinimum_ ? d <= minimum_.GetDouble() : d < minimum_.GetDouble())
1178 RAPIDJSON_INVALID_KEYWORD_RETURN(GetMinimumString());
1179 return true;
1180 }
1181
1182 bool CheckDoubleMaximum(Context& context, double d) const {
1183 if (exclusiveMaximum_ ? d >= maximum_.GetDouble() : d > maximum_.GetDouble())

Callers

nothing calls this directly

Calls 1

GetDoubleMethod · 0.80

Tested by

no test coverage detected