The += operator
adds to the existing string.
Signaturesconst OMString& operator+=(const OMString& s);
const OMString& operator+=(const char s);
const OMString& operator+=(const char * s);
Parameterss
The characters to add to the string
ReturnsThe
updated string