Function operator!=
Synopsis
#include <include/EASTL/bitset.h>
bool operator!=(const this_type &x) const
Description
No description yet.
Source
Lines 2082-2086 in include/EASTL/bitset.h. Line 408 in include/EASTL/bitset.h.
template <size_t N, typename WordType>
inline bool bitset<N, WordType>::operator!=(const this_type& x) const
{
return !base_type::operator==(x);
}