Template Function sdv::operator+(const std::basic_string<TCharType>&, string_base<TCharType, bUnicodeRight, nFixedSizeRight>&&)#
Defined in File string.h
Function Documentation#
-
template<typename TCharType, bool bUnicodeRight, size_t nFixedSizeRight>
string_base<TCharType, bUnicodeRight, nFixedSizeRight> sdv::operator+(const std::basic_string<TCharType> &rssLeft, string_base<TCharType, bUnicodeRight, nFixedSizeRight> &&rssRight)# Returns a string filled with left characters followed by moving right characters.
- Template Parameters:
TCharType – The character type to use for the strings.
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.
rssRight – [in] Reference to the right string. Content will be moved to the new string.
- Returns:
String with left characters concatenated with right characters.