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

Method begin

src/fl/stl/json/types.h:1163–1171  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1161 }
1162
1163 const_iterator begin() const FL_NOEXCEPT {
1164 if (is_object()) {
1165 auto ptr = data.ptr<const json_object>();
1166 if (!ptr) return const_iterator::from_iterator(json_object().begin());
1167 return const_iterator::from_iterator(ptr->begin());
1168 }
1169 // Use temporary empty object to avoid static initialization conflicts with Teensy
1170 return const_iterator::from_iterator(json_object().begin());
1171 }
1172
1173 const_iterator end() const FL_NOEXCEPT {
1174 if (is_object()) {

Callers 10

headerMethod · 0.45
to_stringMethod · 0.45
close_clientMethod · 0.45
handle_esp_requestMethod · 0.45
feedMethod · 0.45
parseBodyMethod · 0.45
consumeMethod · 0.45
updateMethod · 0.45
removeClientMethod · 0.45
json_valueClass · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected