get_type_triangle_second Module Function

module function get_type_triangle_second(self) result(type)

Arguments

Type IntentOptional Attributes Name
class(type_triangle_second), intent(in) :: self

Return Value integer(kind=int32)


Called by

proc~~get_type_triangle_second~~CalledByGraph proc~get_type_triangle_second get_type_triangle_second interface~get_type_triangle_second type_triangle_second%get_type_triangle_second interface~get_type_triangle_second->proc~get_type_triangle_second

Source Code

    module function get_type_triangle_second(self) result(type)
        implicit none
        class(type_triangle_second), intent(in) :: self
        integer(int32) :: type

        type = self%type
    end function get_type_triangle_second