Template Function sdv::operator+(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+(TCharType cLeft, string_base<TCharType, bUnicodeRight, nFixedSizeRight> &&rssRight)# Returns a string filled with left character 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:
cLeft – [in] Left character.
rssRight – [in] Reference to the right string. Content will be moved to the new string.
- Returns:
String with left character concatenated with right characters.