funBplus0 Function

private pure function funBplus0(b) result(ret)

Arguments

Type IntentOptional Attributes Name
real(kind=dp), intent(in) :: b

Return Value real(kind=dp)


Contents

Source Code


Source Code

    pure function funBplus0(b) result(ret)
        real(dp), intent(in) :: b
        real(dp) :: ret
        ret = b
    end function funBplus0