int8_and_int8 Function

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

Bitwise 'AND' 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_and_int8~~CalledByGraph proc~int8_and_int8 int8_and_int8 interface~operator(.and.) operator(.and.) interface~operator(.and.)->proc~int8_and_int8

Contents

Source Code


Source Code

        function int8_and_int8(a, b) result(r)
          !< Bitwise 'AND' 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 = iand(a, b)
        end function int8_and_int8