Rogue Wave Views |
Rogue Wave Views Documentation Home |
Classes | |
class | IlString |
Class that manages strings in single or multibytes. More... | |
Functions | |
IlString | operator+ (const IlString &string1, const IlString &string2) |
Concatenation operator. More... | |
IlString & | operator<< (IlString &string1, const IlString &string2) |
Append operator. More... | |
IlString & | operator<< (IlString &string, const char *cstring) |
Append operator. More... | |
ostream & | operator<< (ostream &ostr, const IlString &string) |
Output operator. More... | |
istream & | operator>> (istream &istr, IlString &string) |
Input operator. More... | |
[library ilog ilog/string.h] Declaration of the IlString
class and some utilities.
Concatenation operator.
This operator concatenates the two strings string1 and string2 into a new one that is returned.
string1 | A constant reference to an IlString& . |
string2 | A constant reference to an IlString& . |
IlString
object. Append operator.
This operator concatenates the two strings string1 and string2 into the first one that is returned.
IlString&
parameter. Append operator.
This operator concatenates the C-style string cstring to string and returns this latter one.
string | A reference to an IlString& . |
cstring | A constant pointer to a C-style string. |
IlString&
parameter. ostream& operator<< | ( | ostream & | ostr, |
const IlString & | string | ||
) |
Output operator.
This operator writes to the output stream ostr a representation of the string string.
ostr | A reference to an ostream. |
string | A constant reference to an IlString . |
istream& operator>> | ( | istream & | istr, |
IlString & | string | ||
) |
Input operator.
This operator reads from the output stream istr a representation of the string string.
istr | A reference to an istream. |
string | A reference to an IlString . |
© Copyright 2014, Rogue Wave Software, Inc. All Rights Reserved.
Rogue Wave is a registered trademark of Rogue Wave Software, Inc. in the United States and other countries. All other trademarks are the property of their respective owners.