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

Method any

src/fl/stl/bitset.h:572–578  ·  view source on GitHub ↗

Queries.

Source from the content-addressed store, hash-verified

570
571 /// Queries.
572 bool any() const FL_NOEXCEPT {
573 if (_storage.template is<fixed_bitset>()) {
574 return _storage.template ptr<fixed_bitset>()->any();
575 } else {
576 return _storage.template ptr<bitset_dynamic>()->any();
577 }
578 }
579
580 bool none() const FL_NOEXCEPT {
581 if (_storage.template is<fixed_bitset>()) {

Callers

nothing calls this directly

Calls 1

anyMethod · 0.65

Tested by

no test coverage detected