operator +=

The += operator adds to the existing string.

Visibility
Public
Signatures
const OMString& operator+=(const OMString& s);

const OMString& operator+=(const char s);

const OMString& operator+=(const char * s);
Parameters
s

The characters to add to the string

Returns

The updated string


Feedback