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

Function cbegin

src/fl/stl/vector.h:673–675  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

671 const_reverse_iterator rend() const FL_NOEXCEPT { return const_reverse_iterator(begin()); }
672
673 const_iterator cbegin() const FL_NOEXCEPT {
674 return mArray ? static_cast<const T*>(mArray) : nullptr;
675 }
676 const_iterator cend() const FL_NOEXCEPT {
677 return mArray ? static_cast<const T*>(mArray) + mSize : nullptr;
678 }

Callers 1

crendMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected