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

Method cbegin

src/fl/stl/multi_set.h:191–191  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

189 iterator begin() { return iterator(mTree.begin()); }
190 const_iterator begin() const { return const_iterator(mTree.begin()); }
191 const_iterator cbegin() const { return const_iterator(mTree.cbegin()); }
192 iterator end() { return iterator(mTree.end()); }
193 const_iterator end() const { return const_iterator(mTree.end()); }
194 const_iterator cend() const { return const_iterator(mTree.cend()); }

Callers

nothing calls this directly

Calls 1

const_iteratorClass · 0.70

Tested by

no test coverage detected