operator+#
Fully qualified name: omni::operator+
Defined in omni/String.h
-
string omni::operator+(const string &lhs, char rhs)#
Creates a new string by concatenating
lhs
andrhs
.- Parameters:
lhs – String the comes first in the new string.
rhs – String that comes second in the new string.
- Throws:
- Returns:
A new string containing the characters from
lhs
followed by the characters fromrhs
.