int8_or_int8 Function

public function int8_or_int8(a, b) result(r)

Bitwise 'OR' over two integer of kind 8

Arguments

Type IntentOptional AttributesName
integer(kind=8), intent(in) :: a
integer(kind=8), intent(in) :: b

Return Value integer(kind=8)


Called by

proc~~int8_or_int8~~CalledByGraph proc~int8_or_int8 int8_or_int8 interface~operator(.or.) operator(.or.) interface~operator(.or.)->proc~int8_or_int8

Contents

Source Code


Source Code

        function int8_or_int8(a, b) result(r)
          !< Bitwise 'OR' over two integer of kind 8
            implicit none
            integer(kind=8), intent(in) :: a
            integer(kind=8), intent(in) :: b
            integer(kind=8) :: r
            r = ior(a, b)
        end function int8_or_int8