Function reset
Synopsis
#include <include/EASTL/bitset.h>
void reset()
Description
No description yet.
Source
Lines 1482-1487 in include/EASTL/bitset.h. Line 257 in include/EASTL/bitset.h.
template <typename WordType>
inline void BitsetBase<2, WordType>::reset()
{
mWord[0] = 0;
mWord[1] = 0;
}