FastLED 3.9.15
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages

◆ any()

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

Queries.

Definition at line 405 of file bitset.h.

405 {
406 if (_storage.template is<fixed_bitset>()) {
407 return _storage.template ptr<fixed_bitset>()->any();
408 } else {
409 return _storage.template ptr<bitset_dynamic>()->any();
410 }
411 }
bool any() const noexcept
Queries.
Definition bitset.h:405
A Bitset implementation with inline storage that can grow if needed.
Definition bitset.h:225