BLE intrinsic function

Standard: F77 F90 F95 F2003 F2008 F2018 Example program


<Syntax>

BLE ( I, J )

I : Integer;
J : Integer, same kind as I, conformable with I;

Result : Logical.

<Semantics>

This function does a bitwise comparison between two integers; the value of the result is .TRUE. if I is less than or equal to J when treated as unsigned integers. This is an elemental function, so if either or both of I or J is an array, the result has the same shape as the operand array(s), with the operation being applied elementwise.

<Related>

BGE intrinsic function, BGT intrinsic function, BLT intrinsic function