SHIFTL intrinsic function
Standard: F77 F90 F95 F2003 F2008
  Example Program
<Syntax>
SHIFTL ( 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 left SHIFT times; it is required that 0≤SHIFT≤BIT_SIZE(I). Bits shifted in on the right are zero. This is an elemental function; if any argument is an array the result is an array of the same shape, with the SHIFTL 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, SHIFTR intrinsic function, TRAILZ intrinsic function