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

Method push_back

src/fl/stl/bitset.h:531–534  ·  view source on GitHub ↗

Add a bit to the end (initialized to 0)

Source from the content-addressed store, hash-verified

529
530 /// Add a bit to the end (initialized to 0)
531 void push_back() FL_NOEXCEPT {
532 fl::u32 new_size = size() + 1;
533 resize(new_size);
534 }
535
536 /// Emplace back - for consistency with other containers
537 template<typename... Args>

Callers

nothing calls this directly

Calls 2

sizeFunction · 0.70
resizeFunction · 0.70

Tested by

no test coverage detected