Function DoGetWord
Summary
#include <include/EASTL/bitset.h>
(1) word_type & DoGetWord(size_type i)
(2) word_type DoGetWord(size_type i) const
Function overload
Synopsis
#include <include/EASTL/bitset.h>
word_type & DoGetWord(size_type i)
Description
No description yet.
Source
Lines 968-973 in include/EASTL/bitset.h. Line 138 in include/EASTL/bitset.h.
template <size_t NW, typename WordType>
inline typename BitsetBase<NW, WordType>::word_type&
BitsetBase<NW, WordType>::DoGetWord(size_type i)
{
return mWord[i >> kBitsPerWordShift];
}
Synopsis
#include <include/EASTL/bitset.h>
word_type DoGetWord(size_type i) const
Description
No description yet.
Source
Lines 976-981 in include/EASTL/bitset.h. Line 139 in include/EASTL/bitset.h.
template <size_t NW, typename WordType>
inline typename BitsetBase<NW, WordType>::word_type
BitsetBase<NW, WordType>::DoGetWord(size_type i) const
{
return mWord[i >> kBitsPerWordShift];
}