Fortran Wiki
bgt

Description

Determines whether an integer is bitwise greater than another.

Standard

Fortran 2008 and later

Class

Elemental function

Syntax

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

category: intrinsics