Template Function sdv::operator>=(const std::basic_string<TCharType>&, const string_base<TCharType, bUnicodeRight, nFixedSizeRight>&)#
Defined in File string.h
Function Documentation#
-
template<typename TCharType, bool bUnicodeRight, size_t nFixedSizeRight>
bool sdv::operator>=(const std::basic_string<TCharType> &rssLeft, const string_base<TCharType, bUnicodeRight, nFixedSizeRight> &rssRight) noexcept# Compare whether the left character sequence is lexicograpgically larger than or equal to the right character sequences.
- Template Parameters:
TCharType – The character type to use for the strings.
bUnicodeRight – When set, the right string is a unicode string.
nFixedSizeRight – Fixed size of the right string.
- Parameters:
rssLeft – [in] Reference to the left string.
rssRight – [in] Reference to the right string.
- Returns:
Returns ‘true’ when left is larger than or equal to right; ‘false’ otherwise.