Product Documentation

c-treeDB API for C++ - Developers Guide

Previous Topic

Next Topic

CTBigint::operator <, <=, >, >=, ==, !=

Syntax

CTBOOL operator < (const CTBigint& left, const CTBigint& right)

CTBOOL operator <= (const CTBigint& left, const CTBigint& right)

CTBOOL operator > (const CTBigint& left, const CTBigint& right)

CTBOOL operator >= (const CTBigint& left, const CTBigint& right)

CTBOOL operator == (const CTBigint& left, const CTBigint& right)

CTBOOL operator != (const CTBigint& left, const CTBigint& right)

Parameters

  • left: [in] The left CTBigint object to be compared
  • right: [in] The right CTBigint object to be compared

Description

These overloaded operators make comparisons between the CTBigint objects.

Return

The operators return YES or NO, depending on the result of the comparison.

TOCIndex