Template Function sdv::operator+(string_base<TCharType, bUnicodeLeft, nFixedSizeLeft>&&, const std::basic_string<TCharType>&)#
Defined in File string.h
Function Documentation#
-
template<typename TCharType, bool bUnicodeLeft, size_t nFixedSizeLeft>
string_base<TCharType, bUnicodeLeft, nFixedSizeLeft> sdv::operator+(string_base<TCharType, bUnicodeLeft, nFixedSizeLeft> &&rssLeft, const std::basic_string<TCharType> &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.
- 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.