operator+=()

String::operator+=(char_t) method

Concatenation assignment operator.

String & System::String::operator+=(char_t c)

Arguments

ParameterTypeDescription
cchar_tCharacter to add to the end of current string.

Return Value

self reference.

String::operator+=(const String&) method

Concatenation assignment operator.

String & System::String::operator+=(const String &str)

Arguments

ParameterTypeDescription
strconst String&String to add to the end of current string.

Return Value

self reference.

String::operator+=(double) method

Concatenation assignment operator.

String & System::String::operator+=(double value)

Arguments

ParameterTypeDescription
valuedoubleDouble to add to the end of current string.

Return Value

self reference.

String::operator+=(uint8_t) method

Concatenation assignment operator.

String & System::String::operator+=(uint8_t value)

Arguments

ParameterTypeDescription
valueuint8_tByte to add to the end of current string.

Return Value

self reference.

String::operator+=(int16_t) method

Concatenation assignment operator.

String & System::String::operator+=(int16_t value)

Arguments

ParameterTypeDescription
valueint16_tShort to add to the end of current string.

Return Value

self reference.

String::operator+=(uint16_t) method

Concatenation assignment operator.

String & System::String::operator+=(uint16_t value)

Arguments

ParameterTypeDescription
valueuint16_tUnsigned short to add to the end of current string.

Return Value

self reference.

String::operator+=(int32_t) method

Concatenation assignment operator.

String & System::String::operator+=(int32_t value)

Arguments

ParameterTypeDescription
valueint32_tInt to add to the end of current string.

Return Value

self reference.

String::operator+=(uint32_t) method

Concatenation assignment operator.

String & System::String::operator+=(uint32_t value)

Arguments

ParameterTypeDescription
valueuint32_tUnsigned int to add to the end of current string.

Return Value

self reference.

String::operator+=(int64_t) method

Concatenation assignment operator.

String & System::String::operator+=(int64_t value)

Arguments

ParameterTypeDescription
valueint64_tLong to add to the end of current string.

Return Value

self reference.

String::operator+=(uint64_t) method

Concatenation assignment operator.

String & System::String::operator+=(uint64_t value)

Arguments

ParameterTypeDescription
valueuint64_tUnsigned long to add to the end of current string.

Return Value

self reference.

String::operator+=(T) method

Concatenation assignment operator.

template<typename T,std::enable_if_t< std::is_same< T, bool >::value > *> String & System::String::operator+=(T value)

Template parameters

ParameterDescription
TValue type to concatenate with string. Must be bool

Arguments

ParameterTypeDescription
valueTBoolean to add to the end of current string.

Return Value

self reference.

See Also