Tools.h++ Manual

104011 Tandem Computers Incorporated 21-83
21
const RWCString&);
RWBoolean operator>=(const RWCString&,
const char* );
RWBoolean operator>=(const char*,
const RWCString&);
RWBoolean operator>=(const RWCString&,
const RWCString&);
Comparisons are done lexicographically, byte by byte. Case sensitivity is exact.
Use member
collate()
or
strxfrm()
for locale sensitivity.
RWCString operator+(const RWCString&,
const RWCString&);
RWCString operator+(const char*,
const RWCString&);
RWCString operator+(const RWCString&,
const char* );
Concatenation operators.
ostream& operator<<(ostream& s,
const RWCString&);
Output a
RWCString
on ostream
s
.
istream& operator>>(istream& s,
RWCString& str);
Calls
str.readToken(s)
. That is, a token is read from the input stream
s
.
RWvostream& operator<<(RWvostream&, const
RWCString& str);
RWFile& operator<<(RWFile&, const
RWCString& str);
Saves string
str
to a virtual stream or
RWFile
, respectively.
RWvistream& operator>>(RWvistream&,
RWCString& str);
RWFile& operator>>(RWFile&,
RWCString& str);
Restores a string into
str
from a virtual stream or
RWFile
, respectively,
replacing the previous contents of
str
.