get_group_square_second Module Function

module function get_group_square_second(self) result(group)

Arguments

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

Return Value integer(kind=int32)


Called by

proc~~get_group_square_second~~CalledByGraph proc~get_group_square_second get_group_square_second interface~get_group_square_second type_square_second%get_group_square_second interface~get_group_square_second->proc~get_group_square_second

Source Code

    module function get_group_square_second(self) result(group)
        implicit none
        class(type_square_second), intent(in) :: self
        integer(int32) :: group

        group = self%group
    end function get_group_square_second