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

◆ operator&()

bitset_dynamic fl::bitset_dynamic::operator& ( const bitset_dynamic & other) const
inline

Definition at line 364 of file bitset_dynamic.h.

364 {
365 bitset_dynamic result(_size);
366
367 if (!_blocks || !other._blocks || !result._blocks) {
368 return result;
369 }
370
371 fl::u32 min_blocks = MIN(_block_count, other._block_count);
372
373 for (fl::u32 i = 0; i < min_blocks; ++i) {
374 result._blocks[i] = _blocks[i] & other._blocks[i];
375 }
376
377 return result;
378 }
block_type * _blocks
bitset_dynamic()=default
#define MIN(a, b)
Definition math_macros.h:41

References bitset_dynamic(), _block_count, _blocks, _size, and MIN.

+ Here is the call graph for this function: