9.3.72 IOR (I, J)

Description:  Performs an inclusive OR on corresponding bits. This function can also be specified as OR.  
Class:  Elemental function; Generic 
Arguments:  I Must be of type integer.  
  J Must be of type integer with the same kind parameter as I.  
Results:  The result type is the same as I. The result value is derived by combining I and J bit-by-bit according to the following truth table:
I   J   IOR (I, J)

1   1       1
1   0       1
0   1       1
0   0       0
The model for the interpretation of an integer value as a sequence of bits is shown in Section D.3

Specific Name  Argument Type  Result Type 
  INTEGER(1)  INTEGER(1) 
IIOR  INTEGER(2)  INTEGER(2) 
JIOR  INTEGER(4)  INTEGER(4) 
KIOR  INTEGER(8)  INTEGER(8) 

Examples

IOR (1, 4) has the value 5.

IOR (1, 2) has the value 3.


Previous Page Next Page Table of Contents