Share

>=

C++

inline bool operator >=(
    const wchar_t * pwsz, 
    const AcString & acs
);

File

AcString.h

Description

Compares a string of Unicode character to determine if it is greater than or equal to an AcString object.

Parameters

Parameters Description
pwsz Input pointer of a character to the string of Unicode characters
acs Input reference to an AcString object

Returns

true if pwsz is greater than or equal to acs, else false.

Previous Declaration

bool operator >= (const wchar_t *pwsz, const AcString & acs);

Was this information helpful?