| 280 | ::String &operator+=(const ::String &inRHS); |
| 281 | ::String operator+(const ::String &inRHS) const; |
| 282 | ::String operator+(const int &inRHS) const { return *this + ::String(inRHS); } |
| 283 | ::String operator+(const bool &inRHS) const { return *this + ::String(inRHS); } |
| 284 | ::String operator+(const double &inRHS) const { return *this + ::String(inRHS); } |
| 285 | ::String operator+(const float &inRHS) const { return *this + ::String(inRHS); } |