The < operator
determines whether the first object is less than the second.
Signaturesint operator<(const OMString& s) const
int operator<(const char * c2) const
inline int operator<(const char * c, const OMString& s)
Parameters
for signature 1s
The string to compare to the current
string
Parameters for
signature 2c2
The character to compare to the current
character
Parameters
for signature 3c
The character to compare to the specified
string
s
The string to compare to the specified
character
ReturnsThe
method returns one of the following values:
- 1 -
The first object is less than
the specified second.
- 0 -
The first object
is not less than the second.