Fortran Wiki
bge

Description

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

Standard

Fortran 2008 and later

Class

Elemental function

Syntax

result = bge(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

bgt, ble, blt

category: intrinsics