Template Function sdv::operator>=(const string_base<TCharType, bUnicodeLeft, nFixedSizeLeft>&, const std::basic_string<TCharType>&)#

Function Documentation#

template<typename TCharType, bool bUnicodeLeft, size_t nFixedSizeLeft>
bool sdv::operator>=(const string_base<TCharType, bUnicodeLeft, nFixedSizeLeft> &rssLeft, const std::basic_string<TCharType> &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.

  • bUnicodeLeft – When set, the left string is a unicode string.

  • nFixedSizeLeft – Fixed size of the left 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.