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

◆ all()

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

Definition at line 421 of file bitset.h.

421 {
422 if (_storage.template is<fixed_bitset>()) {
423 return _storage.template ptr<fixed_bitset>()->all();
424 } else {
425 return _storage.template ptr<bitset_dynamic>()->all();
426 }
427 }
bool all() const noexcept
Definition bitset.h:421
A Bitset implementation with inline storage that can grow if needed.
Definition bitset.h:225