]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/fortran/doc/gfortran/intrinsic-procedures/bge.rst
0b53692d0efe23d60c49d2c5edb690a956e95423
[thirdparty/gcc.git] / gcc / fortran / doc / gfortran / intrinsic-procedures / bge.rst
1 ..
2 Copyright 1988-2022 Free Software Foundation, Inc.
3 This is part of the GCC manual.
4 For copying conditions, see the copyright.rst file.
5
6 .. index:: BGE, bitwise comparison
7
8 .. _bge:
9
10 BGE --- Bitwise greater than or equal to
11 ****************************************
12
13 .. function:: BGE(I, J)
14
15 Determines whether an integral is a bitwise greater than or equal to
16 another.
17
18 :param I:
19 Shall be of ``INTEGER`` type.
20
21 :param J:
22 Shall be of ``INTEGER`` type, and of the same kind
23 as :samp:`{I}`.
24
25 :return:
26 The return value is of type ``LOGICAL`` and of the default kind.
27
28 Standard:
29 Fortran 2008 and later
30
31 Class:
32 Elemental function
33
34 Syntax:
35 .. code-block:: fortran
36
37 RESULT = BGE(I, J)
38
39 See also:
40 :ref:`BGT`,
41 :ref:`BLE`,
42 :ref:`BLT`