]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/fortran/doc/gfortran/intrinsic-procedures/bgt.rst
sphinx: add missing trailing newline
[thirdparty/gcc.git] / gcc / fortran / doc / gfortran / intrinsic-procedures / bgt.rst
CommitLineData
c63539ff
ML
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:: BGT, bitwise comparison
7
8.. _bgt:
9
10BGT --- Bitwise greater than
11****************************
12
13.. function:: BGT(I, J)
14
15 Determines whether an integral is a bitwise greater than another.
16
17 :param I:
18 Shall be of ``INTEGER`` type.
19
20 :param J:
21 Shall be of ``INTEGER`` type, and of the same kind
22 as :samp:`{I}`.
23
24 :return:
25 The return value is of type ``LOGICAL`` and of the default kind.
26
27 Standard:
28 Fortran 2008 and later
29
30 Class:
31 Elemental function
32
33 Syntax:
34 .. code-block:: fortran
35
36 RESULT = BGT(I, J)
37
38 See also:
39 :ref:`BGE`,
40 :ref:`BLE`,
3ed1b4ce 41 :ref:`BLT`