#include "CifString.h"
int CifString::operator$<=$(const CifString &a, const CifString &b)
#include "CifString.h"
CifString a, b, c;
a.Copy("ab");
b.Copy("cd");
if (a<=b) ...
operator<=(const CifString &, const CifString &) Cheks if first string is less then or equal to second.
| a | reference to a CifString |
| b | reference to a CifString |
Returns 1 if the first CifStrings is less than or equal to second, otherwise 0.
None