|
@@ -182,6 +182,16 @@ String& String::operator += (short rhs)
|
|
|
return *this += String(rhs);
|
|
return *this += String(rhs);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+String& String::operator += (long rhs)
|
|
|
|
|
+{
|
|
|
|
|
+ return *this += String(rhs);
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+String& String::operator += (long long rhs)
|
|
|
|
|
+{
|
|
|
|
|
+ return *this += String(rhs);
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
String& String::operator += (unsigned rhs)
|
|
String& String::operator += (unsigned rhs)
|
|
|
{
|
|
{
|
|
|
return *this += String(rhs);
|
|
return *this += String(rhs);
|
|
@@ -191,7 +201,7 @@ String& String::operator += (unsigned short rhs)
|
|
|
{
|
|
{
|
|
|
return *this += String(rhs);
|
|
return *this += String(rhs);
|
|
|
}
|
|
}
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
String& String::operator += (unsigned long rhs)
|
|
String& String::operator += (unsigned long rhs)
|
|
|
{
|
|
{
|
|
|
return *this += String(rhs);
|
|
return *this += String(rhs);
|
|
@@ -199,7 +209,7 @@ String& String::operator += (unsigned long rhs)
|
|
|
|
|
|
|
|
String& String::operator += (unsigned long long rhs)
|
|
String& String::operator += (unsigned long long rhs)
|
|
|
{
|
|
{
|
|
|
- return *this += String(rhs);
|
|
|
|
|
|
|
+ return *this += String(rhs);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
String& String::operator += (float rhs)
|
|
String& String::operator += (float rhs)
|