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>
string_base<TCharType, bUnicodeLeft, nFixedSizeLeft> sdv::operator+(const string_base<TCharType, bUnicodeLeft, nFixedSizeLeft> &rssLeft, const std::basic_string<TCharType> &rssRight)#

Returns a string composed from left characters followed by right characters.

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:

String with left characters concatenated with right characters.