Function operator==
Synopsis
#include <include/EASTL/bitset.h>
bool operator==(const this_type &x) const
Description
No description yet.
Source
Lines 1490-1494 in include/EASTL/bitset.h. Line 259 in include/EASTL/bitset.h.
template <typename WordType>
inline bool BitsetBase<2, WordType>::operator==(const this_type& x) const
{
return (mWord[0] == x.mWord[0]) && (mWord[1] == x.mWord[1]);
}