Function CSPString::operator >=()
Description:
Performs a "greater than or equal" lexicographical comparison between this and another string.
 |
Prototype:
bool operator >=(const CSPString& strString) const;
Arguments:
- const CSPString& strString [IN]
The string to compare to.
Return value:
If this string is lexicographically greater than or equal to the string to compare to, it returns true. Otherwise, it returns false.
Remarks:
For more information about the data type conversions available, see the remarks section of class CSPString
|
|