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

Method size

src/fl/stl/bitset.h:597–603  ·  view source on GitHub ↗

Size of the Bitset (number of bits).

Source from the content-addressed store, hash-verified

595
596 /// Size of the Bitset (number of bits).
597 fl::u32 size() const FL_NOEXCEPT {
598 if (_storage.template is<fixed_bitset>()) {
599 return N;
600 } else {
601 return _storage.template ptr<bitset_dynamic>()->size();
602 }
603 }
604
605 /// Convert bitset to string representation
606 void to_string(string* dst) const FL_NOEXCEPT {

Callers

nothing calls this directly

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected