Function operator>=
Synopsis
#include <include/EASTL/bitvector.h>
bool operator>=(const this_type &rhs) const
Description
No description yet.
Source
Lines 565-569 in include/EASTL/bitvector.h. Line 136 in include/EASTL/bitvector.h.
template <typename Element>
bool bitvector_const_iterator<Element>::operator>=(const this_type& rhs) const
{
return !(*this < rhs);
}