a_double_compare#

View page source

a_double Comparison Operators#

Syntax#

b = ax op ay
b = ax op y

op#

The binary operator op is one of the following: < (less than), <= (less than or equal), > (greater than), >= (greater than or equal), == (equal), != (not equal).

ax#

This object has c++ prototype

      const a_double& ax

ay#

This object has c++ prototype

      const a_double& ay

y#

This object has c++ prototype

      const double& y

b#

The result has c++ prototype

      bool b

Example#

c++, python.