Definition at line 381 of file bitset_dynamic.h.
381 {
383
384 if (!
_blocks || !other._blocks || !result._blocks) {
385 return result;
386 }
387
389
390 for (fl::u32 i = 0; i < min_blocks; ++i) {
391 result._blocks[i] =
_blocks[i] | other._blocks[i];
392 }
393
394
396 memcpy(result._blocks + min_blocks,
_blocks + min_blocks,
398 }
399
400 return result;
401 }
References bitset_dynamic(), _block_count, _blocks, _size, and MIN.