failed Function

private pure function failed(me)

Returns True if an exception has been raised.

Type Bound

numdiff_type

Arguments

Type IntentOptional Attributes Name
class(numdiff_type), intent(in) :: me

Return Value logical


Called by

proc~~failed~~CalledByGraph proc~failed numerical_differentiation_module::numdiff_type%failed program~test1 test1 program~test1->proc~failed program~test2 test2 program~test2->proc~failed

Source Code

    pure logical function failed(me)

    implicit none

    class(numdiff_type),intent(in) :: me

    failed = me%exception_raised

    end function failed