Template Function sdv::operator+(string_base<TCharType, bUnicodeLeft, nFixedSizeLeft>&&, const string_base<TCharType, bUnicodeRight, nFixedSizeRight>&)#

Function Documentation#

template<typename TCharType, bool bUnicodeLeft, size_t nFixedSizeLeft, bool bUnicodeRight, size_t nFixedSizeRight>
string_base<TCharType, bUnicodeLeft, nFixedSizeLeft> sdv::operator+(string_base<TCharType, bUnicodeLeft, nFixedSizeLeft> &&rssLeft, const string_base<TCharType, bUnicodeRight, nFixedSizeRight> &rssRight)#

Returns a string by moving 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.

  • 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. Content will be moved to the new string.

  • rssRight[in] Reference to the right string.

Returns:

String with left characters concatenated with right characters.