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

◆ none()

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

Definition at line 413 of file bitset.h.

413 {
414 if (_storage.template is<fixed_bitset>()) {
415 return _storage.template ptr<fixed_bitset>()->none();
416 } else {
417 return _storage.template ptr<bitset_dynamic>()->none();
418 }
419 }
bool none() const noexcept
Definition bitset.h:413
A Bitset implementation with inline storage that can grow if needed.
Definition bitset.h:225