get_id_side_second Module Function

module function get_id_side_second(self) result(id)

Arguments

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

Return Value integer(kind=int32)


Called by

proc~~get_id_side_second~~CalledByGraph proc~get_id_side_second get_id_side_second interface~get_id_side_second type_side_second%get_id_side_second interface~get_id_side_second->proc~get_id_side_second

Source Code

    module function get_id_side_second(self) result(id)
        implicit none
        class(type_side_second), intent(in) :: self
        integer(int32) :: id

        id = self%id
    end function get_id_side_second