Fortran Wiki
ble

Description

Determines whether an integer is bitwise less than or equal to another.

Standard

Fortran 2008 and later

Class

Elemental function

Syntax

result = ble(i, j)

Arguments

  • i - Shall be of integer type.
  • j - Shall be of integer type, and of the same kind as i.

Return value

The return value is of type logical and of the default kind.

See also

bge, bgt, blt

category: intrinsics