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

◆ any()

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

Definition at line 266 of file bitset_dynamic.h.

266 {
267 if (!_blocks) return false;
268
269 for (fl::u32 i = 0; i < _block_count; ++i) {
270 if (_blocks[i] != 0)
271 return true;
272 }
273 return false;
274 }
fl::unique_ptr< block_type[]> _blocks

References _block_count, _blocks, and FL_NOEXCEPT.

Referenced by none().

+ Here is the caller graph for this function: