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

Method begin

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

Source from the content-addressed store, hash-verified

481 return mValue->end();
482 }
483 json_value::const_iterator begin() const FL_NOEXCEPT {
484 if (!mValue) return json_value::const_iterator::from_iterator(json_object().begin());
485 return json_value::const_iterator::from_object_iterator(mValue->begin());
486 }
487 json_value::const_iterator end() const FL_NOEXCEPT {
488 if (!mValue) return json_value::const_iterator::from_iterator(json_object().end());
489 return json_value::const_iterator::from_object_iterator(mValue->end());

Callers 1

jsonClass · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected