Share

<=

C++

inline bool operator <=(
    const CStringW & csw, 
    const AcString & acs
);

File

AcString.h

Description

Compares a CStringW object to determine if it is less than or equal to an AcString object.

Parameters

Parameters Description
csw Input reference to a CStringW object
acs Input reference to an AcString object

Returns

true if csw is less than or equal to acs, else false.

Was this information helpful?