Fortran Wiki
blt

Description

Determines whether an integer is bitwise less than another.

Standard

Fortran 2008 and later

Class

Elemental function

Syntax

result = blt(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, ble

category: intrinsics