Bpp/Standard Basic_string | C++ |
|  |
This module provides facilities to manipulate strings of characters. The existence of this module is due to the need of manipulating strings very early in the module hierarchy. This section allows you to access the C++ source files of the module. This module is part of Bpp/Standard . The files listed below are included in the interface part of the module. So any module dependent of this module is also dependent of the files listed here. The files listed below are needed by the implementation part of the module. But a module dependent of this module is not necessary dependent of the files listed here. The namespaces listed below are integrated in this module. That means any element declared in one of those namespaces can now be directly used by or from this module. Here are listed the functions provided by the module. To use one of them, you have to specify the namespace of the module. inline tyBoolean operator == (const clString & agString1,const clString & agString2) Tests if two strings are the same.
inline tyBoolean operator == (const clString & agString1,tcString agString2) Tests if two strings are the same.
inline tyBoolean operator == (tcString agString1,const clString & agString2) Tests if two strings are the same.
inline tyBoolean operator != (const clString & agString1,const clString & agString2) Tests if two strings are different.
inline tyBoolean operator != (const clString & agString1,tcString agString2) Tests if two strings are different.
inline tyBoolean operator != (tcString agString1,const clString & agString2) Tests if two strings are different.
inline tyBoolean operator < (const clString & agString1,const clString & agString2) Tests if a string is before another one according to the lexicographical order.
inline tyBoolean operator < (const clString & agString1,tcString agString2) Tests if a string is before another one according to the lexicographical order.
inline tyBoolean operator < (tcString agString1,const clString & agString2) Tests if a string is before another one according to the lexicographical order.
inline tyBoolean operator > (const clString & agString1,const clString & agString2) Tests if a string is after another one according to the lexicographical order.
inline tyBoolean operator > (const clString & agString1,tcString agString2) Tests if a string is after another one according to the lexicographical order.
inline tyBoolean operator > (tcString agString1,const clString & agString2) Tests if a string is after another one according to the lexicographical order.
inline tyBoolean operator >= (const clString & agString1,const clString & agString2) Tests if a string is after or the same as another one according to the lexicographical order.
inline tyBoolean operator >= (const clString & agString1,tcString agString2) Tests if a string is after or the same as another one according to the lexicographical order.
inline tyBoolean operator >= (tcString agString1,const clString & agString2) Tests if a string is after or the same as another one according to the lexicographical order.
inline tyBoolean operator <= (const clString & agString1,const clString & agString2) Tests if a string is before or the same as another one according to the lexicographical order.
inline tyBoolean operator <= (const clString & agString1,tcString agString2) Tests if a string is before or the same as another one according to the lexicographical order.
inline tyBoolean operator <= (tcString agString1,const clString & agString2) Tests if a string is before or the same as another one according to the lexicographical order.
function tyInteger compare(tcString agString1,tcString agString2) Compares two strings.
function void copy(tyString agString1,tcString agString2) Copies a string.
function void lowerCase(tyString agString) Converts a string into lower cases.
function tyBoolean matched(tcString agString,tcString agFormat) Tests if a string matches a format.
function tyCardinal size(tcString agString) Returns the size of a string (without the null character).
function void upperCase(tyString agString) Converts a string into upper cases.
function clString operator + (const clString & agString1,const clString & agString2) Concatenates two strings.
function clString operator + (const clString & agString1,tcString agString2) Concatenates two strings.
function clString operator + (tcString agString1,const clString & agString2) Concatenates two strings.
function private_area::clOutStream & operator << (private_area::clOutStream & agStream,ctString & agString) Writes a string into a stream.
function private_area::clInStream & operator >> (private_area::clInStream & agStream,clString & agString) Reads a string from a stream.
function void getLine(private_area::clInStream & agStream,clString & agString) Reads a line from a stream.
function tyBoolean getString(private_area::clInStream & agStream,clString & agString) Reads a string from a stream and returns true if the end of the line is reached.
Here are listed the classes provided by the module. To use one of them, you have to specify the namespace of the module. class clString
This class represents a string of characters. | | Copyright (c) 1999-2016 - Bruno Bachelet - bruno@nawouak.net - http://www.nawouak.net | Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.1 or any later version published by the Free Software Foundation. See this license for more details (http://www.gnu.org). |
|
| |