Product Documentation

c-treeDB API for C# - Developers Guide

Previous Topic

Next Topic

CTBigint.operator <, <=, >, >=, ==, !=

Syntax

bool operator < (CTBigint left, CTBigint right)

bool operator <= (CTBigint left, CTBigint right)

bool operator > (CTBigint left, CTBigint right)

bool operator >= (CTBigint left, CTBigint right)

bool operator == (CTBigint left, CTBigint right)

bool operator != (CTBigint left, 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 true or false, depending on the result of the comparison.

TOCIndex