9.261 TRAILZ — Number of trailing zero bits of an integer
- Description:
 - 
TRAILZreturns the number of trailing zero bits of an integer. - Standard:
 - 
Fortran 2008 and later
 - Class:
 - 
Elemental function
 - Syntax:
 - 
RESULT = TRAILZ(I) - Arguments:
 - 
I Shall be of type INTEGER. - Return value:
 - 
The type of the return value is the default
INTEGER. If all the bits ofIare zero, the result value isBIT_SIZE(I). - Example:
 - 
PROGRAM test_trailz WRITE (*,*) TRAILZ(8) ! prints 3 END PROGRAM
 - See also:
 
    © Free Software Foundation
Licensed under the GNU Free Documentation License, Version 1.3.
    https://gcc.gnu.org/onlinedocs/gcc-6.4.0/gfortran/TRAILZ.html