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

◆ operator^=()

template<uint32_t N>
BitsetFixed & fl::BitsetFixed< N >::operator^= ( const BitsetFixed< N > & other)
inlinenoexcept

Bitwise XOR.

Definition at line 195 of file bitset.h.

195 {
196 for (uint32_t i = 0; i < block_count; ++i) {
197 _blocks[i] ^= other._blocks[i];
198 }
199 return *this;
200 }
static constexpr uint32_t block_count
Definition bitset.h:24
block_type _blocks[block_count]
Definition bitset.h:29
A simple fixed-size Bitset implementation similar to std::Bitset.
Definition bitset.h:21

References BitsetFixed(), _blocks, and block_count.

+ Here is the call graph for this function: