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

I : Integer;
Result : Integer (default kind).
<Semantics>
Returns 1 if the number of one bits in the internal representation of I is odd, and 0 if it is even; this is the same value as IAND(POPCNT(I),1). This is an elemental function; if I is an array the result is an array of the same shape, with the POPPAR operation applied to each element of I.
<Related>
IAND intrinsic function, IEOR intrinsic function, IOR intrinsic function, LEADZ intrinsic function, MASKL intrinsic function, MASKR intrinsic function, NOT intrinsic function, POPCNT intrinsic function, SHIFTA intrinsic function, SHIFTL intrinsic function, SHIFTR intrinsic function, TRAILZ intrinsic function