Function all
Synopsis
#include <include/EASTL/bitset.h>
bool all() const
Description
template <size_t N, typename WordType> inline bool bitset<N, WordType>::any() const { return base_type::any(); }
Source
Lines 2114-2118 in include/EASTL/bitset.h. Line 412 in include/EASTL/bitset.h.
template <size_t N, typename WordType>
inline bool bitset<N, WordType>::all() const
{
return count() == size();
}