MASKL intrinsic function
Standard: F77 F90 F95 F2003 F2008
  Example Program
<Syntax>
MASKL ( I [ , KIND ] )

I : Integer;
KIND : scalar Integer constant expression;

Result : Integer or Integer(Kind=KIND).
<Semantics>
The value of the result is an integer with the leftmost (most significant) I bits set to one and the rest zero; I must be greater than or equal to zero, and less than or equal to the number of bits in the result. This is an elemental function; if I is an array the result is an array of the same shape, with the MASKL operation applied to each element of I.
<Related>
IAND intrinsic function, IEOR intrinsic function, IOR intrinsic function, LEADZ intrinsic function, MASKR intrinsic function, NOT intrinsic function, POPCNT intrinsic function, POPPAR intrinsic function, SHIFTA intrinsic function, SHIFTL intrinsic function, SHIFTR intrinsic function, TRAILZ intrinsic function