rkv89_order Function

private pure function rkv89_order(me) result(p)

Returns the order of the rkv89 method.

Type Bound

rkv89_class

Arguments

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

Return Value integer

order of the method


Source Code

    pure function rkv89_order(me) result(p)

    implicit none

    class(rkv89_class),intent(in) :: me
    integer                       :: p    !! order of the method

    p = 8

    end function rkv89_order