Function operator^=
Synopsis
#include <include/EASTL/bitset.h>
void operator^=(const this_type &x)
Description
No description yet.
Source
Lines 1142-1146 in include/EASTL/bitset.h. Line 182 in include/EASTL/bitset.h.
template <typename WordType>
inline void BitsetBase<1, WordType>::operator^=(const this_type& x)
{
mWord[0] ^= x.mWord[0];
}