System::String::operator+= method

String::operator+=(char_t) method

Concatenation assignment operator.

String & System::String::operator+=(char_t c)
ParameterTypeDescription
cchar_tCharacter to add to the end of current string.

ReturnValue

self reference.

See Also

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

Concatenation assignment operator.

String & System::String::operator+=(const String &str)
ParameterTypeDescription
strconst String&String to add to the end of current string.

ReturnValue

self reference.

See Also

String::operator+=(double) method

Concatenation assignment operator.

String & System::String::operator+=(double value)
ParameterTypeDescription
valuedoubleDouble to add to the end of current string.

ReturnValue

self reference.

See Also

String::operator+=(int16_t) method

Concatenation assignment operator.

String & System::String::operator+=(int16_t value)
ParameterTypeDescription
valueint16_tShort to add to the end of current string.

ReturnValue

self reference.

See Also

String::operator+=(int32_t) method

Concatenation assignment operator.

String & System::String::operator+=(int32_t value)
ParameterTypeDescription
valueint32_tInt to add to the end of current string.

ReturnValue

self reference.

See Also

String::operator+=(int64_t) method

Concatenation assignment operator.

String & System::String::operator+=(int64_t value)
ParameterTypeDescription
valueint64_tLong to add to the end of current string.

ReturnValue

self reference.

See Also

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)
ParameterDescription
TValue type to concatenate with string. Must be bool
ParameterTypeDescription
valueTBoolean to add to the end of current string.

ReturnValue

self reference.

See Also

String::operator+=(uint16_t) method

Concatenation assignment operator.

String & System::String::operator+=(uint16_t value)
ParameterTypeDescription
valueuint16_tUnsigned short to add to the end of current string.

ReturnValue

self reference.

See Also

String::operator+=(uint32_t) method

Concatenation assignment operator.

String & System::String::operator+=(uint32_t value)
ParameterTypeDescription
valueuint32_tUnsigned int to add to the end of current string.

ReturnValue

self reference.

See Also

String::operator+=(uint64_t) method

Concatenation assignment operator.

String & System::String::operator+=(uint64_t value)
ParameterTypeDescription
valueuint64_tUnsigned long to add to the end of current string.

ReturnValue

self reference.

See Also

String::operator+=(uint8_t) method

Concatenation assignment operator.

String & System::String::operator+=(uint8_t value)
ParameterTypeDescription
valueuint8_tByte to add to the end of current string.

ReturnValue

self reference.

See Also