Template Function sdv::operator+(const string_base<TCharType, bUnicodeLeft, nFixedSizeLeft>&, const 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 TCharType *szRight)#

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.

  • szRight[in] Pointer to zero terminate right string.

Returns:

String with left characters concatenated with right characters.