IOR intrinsic function
Standard: F77 F90 F95 F2003
  Example Program
<Syntax>
IOR ( I, J )

I : Integer;
J : Integer, same kind as I, conformable with I;

Result : Same type and kind as I.
<Semantics>
The value of the result is the bitwise or of I and J; each bit in the result is 0 if and only if both the corresponding bits of I and J are 0. This is an elemental function; if any argument is an array the result is an array of the same shape, with the IOR operation being applied elementwise.
<Related>
IALL intrinsic function, IAND intrinsic function, IEOR intrinsic function, ISHFT intrinsic function, ISHFTC intrinsic function, LEADZ intrinsic function, MASKL intrinsic function, MASKR intrinsic function, NOT intrinsic function, SHIFTA intrinsic function, SHIFTL intrinsic function, SHIFTR intrinsic function, TRAILZ intrinsic function