Function CSPWString::operator >=()
Description:
Performs a "greater than or equal" lexicographical comparison between this and another string.
 |
Prototype:
bool operator >=(const CSPWString& wstrString) const;
Arguments:
- const CSPWString& wstrString [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 CSPWString
|
|