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

◆ any()

bool fl::bitset_dynamic::any ( ) const
inlinenoexcept

Definition at line 259 of file bitset_dynamic.h.

259 {
260 if (!_blocks) return false;
261
262 for (fl::u32 i = 0; i < _block_count; ++i) {
263 if (_blocks[i] != 0)
264 return true;
265 }
266 return false;
267 }
block_type * _blocks

References _block_count, and _blocks.

Referenced by none().

+ Here is the caller graph for this function: