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

Function Documentation#

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

Returns a string by moving left characters followed by right character.

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

  • cRight[in] Right character.

Returns:

String with left characters concatenated with right character.