SHIFTR intrinsic function
Standard: F77 F90 F95 F2003 F2008
  Example Program
<Syntax>
SHIFTR ( I, SHIFT )

I : Integer;
SHIFT : Integer, conformable with I;

Result : Same type and kind as I.
<Semantics>
The value of the result is obtained by shifting I to the right SHIFT times; it is required that 0≤I≤BIT_SIZE(I). Bits shifted in on the left are zero. This is an elemental function; if any argument is an array the result is an array of the same shape, with the SHIFTR operation being applied elementwise.
<Related>
IAND intrinsic function, IEOR intrinsic function, IOR intrinsic function, ISHFT intrinsic function, ISHFTC intrinsic function, LEADZ intrinsic function, MASKL intrinsic function, MASKR intrinsic function, NOT intrinsic function, POPCNT intrinsic function, POPPAR intrinsic function, SHIFTA intrinsic function, SHIFTL intrinsic function, TRAILZ intrinsic function