get_dimension_side_first Module Function

module function get_dimension_side_first(self) result(dimension)

Arguments

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

Return Value integer(kind=int32)


Called by

proc~~get_dimension_side_first~~CalledByGraph proc~get_dimension_side_first get_dimension_side_first interface~get_dimension_side_first type_side_first%get_dimension_side_first interface~get_dimension_side_first->proc~get_dimension_side_first

Source Code

    module function get_dimension_side_first(self) result(dimension)
        implicit none
        class(type_side_first), intent(in) :: self
        integer(int32) :: dimension

        dimension = self%dimension
    end function get_dimension_side_first