MCPcopy Create free account
hub / github.com/FastLED/FastLED / json

Method json

src/fl/stl/json.h:136–136  ·  view source on GitHub ↗

Constructors

Source from the content-addressed store, hash-verified

134public:
135 // Constructors
136 json() FL_NOEXCEPT : mValue() {} // Default initialize to nullptr
137 json(fl::nullptr_t) FL_NOEXCEPT : mValue(fl::make_shared<json_value>(nullptr)) {}
138 json(bool b) FL_NOEXCEPT : mValue(fl::make_shared<json_value>(b)) {}
139 json(int i) FL_NOEXCEPT : mValue(fl::make_shared<json_value>(static_cast<i64>(i))) {}

Callers 12

index.tsFile · 0.45
fetchJsonFunction · 0.45
mainFunction · 0.45
mainFunction · 0.45
test_quick.pyFile · 0.45
setupFunction · 0.45
test_json_endpointFunction · 0.45
test_get_endpointFunction · 0.45
test_json_responseFunction · 0.45
test_json_awaitFunction · 0.45
startHttpServerFunction · 0.45

Calls 2

stringClass · 0.70
push_backMethod · 0.45

Tested by 4

test_json_endpointFunction · 0.36
test_get_endpointFunction · 0.36
test_json_responseFunction · 0.36
test_json_awaitFunction · 0.36