Definition at line 404 of file bitset_dynamic.h.
404 {
406
407 if (!
_blocks || !other._blocks || !result._blocks) {
408 return result;
409 }
410
412
413 for (fl::u32 i = 0; i < min_blocks; ++i) {
414 result._blocks[i] =
_blocks[i] ^ other._blocks[i];
415 }
416
417
419 memcpy(result._blocks + min_blocks,
_blocks + min_blocks,
421 }
422
423 return result;
424 }
References bitset_dynamic(), _block_count, _blocks, _size, and MIN.