FastLED 3.9.15
Loading...
Searching...
No Matches

◆ size()

template<uint32_t N = 256>
uint32_t fl::BitsetInlined< N >::size ( ) const
inlinenoexcept

Size of the Bitset (number of bits).

Definition at line 430 of file bitset.h.

430 {
431 if (_storage.template is<fixed_bitset>()) {
432 return N;
433 } else {
434 return _storage.template ptr<bitset_dynamic>()->size();
435 }
436 }
uint32_t size() const noexcept
Size of the Bitset (number of bits).
Definition bitset.h:430
A Bitset implementation with inline storage that can grow if needed.
Definition bitset.h:225

Referenced by operator&, operator^, and operator|.

+ Here is the caller graph for this function: