XL Fortran for AIX 8.1

Language Reference


IAND(I, J)

Performs a logical AND.

I
must be of type integer.

J
must be of type integer with the same kind type parameter as I.

Class

Elemental function

Result Type and Attributes

Same as I.

Result Value

The result has the value obtained by combining I and J bit-by-bit according to the following table:

I   J   IAND (I,J)
------------------
1   1       1
1   0       0
0   1       0
0   0       0

The bits are numbered from 0 to BIT_SIZE(I)-1, from right to left.

Examples

IAND (1, 3) has the value 1. See Integer Bit Model.


Specific Name Argument Type Result Type Pass As Arg?
IAND (1) any integer same as argument yes
AND (1) any integer same as argument yes

Notes:

  1. IBM Extension.


[ Top of Page | Previous Page | Next Page | Table of Contents | Index ]