MCPcopy Create free account
hub / github.com/OpenDriveLab/OpenLane / JsonValue

Function JsonValue

eval/CIPO_evaluation/common/gason.h:51–53  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

49 double fval;
50
51 JsonValue(double x)
52 : fval(x) {
53 }
54 JsonValue(JsonTag tag = JSON_NULL, void *payload = nullptr) {
55 assert((uintptr_t)payload <= JSON_VALUE_PAYLOAD_MASK);
56 ival = JSON_VALUE_NAN_MASK | ((uint64_t)tag << JSON_VALUE_TAG_SHIFT) | (uintptr_t)payload;

Callers 2

listToValueFunction · 0.85
jsonParseFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected