IANY — Bitwise OR of array elements¶
- IANY()¶
Reduces with bitwise OR (inclusive or) the elements of
ARRAYalong dimensionDIMif the corresponding element inMASKisTRUE.- Parameters
ARRAY – Shall be an array of type
INTEGERDIM – (Optional) shall be a scalar of type
INTEGERwith a value in the range from 1 to n, where n equals the rank ofARRAY.MASK – (Optional) shall be of type
LOGICALand either be a scalar or an array of the same shape asARRAY.
- Returns
The result is of the same type as
ARRAY.
Standard:Fortran 2008 and later
Class:Transformational function
Syntax:RESULT = IANY(ARRAY[, MASK]) RESULT = IANY(ARRAY, DIM[, MASK])
Example:PROGRAM test_iany INTEGER(1) :: a(2) a(1) = b'00100100' a(2) = b'01101010' ! prints 01101110 PRINT '(b8.8)', IANY(a) END PROGRAM
See also:IPARITY, IALL, IOR