Returns the upper bounds of the grid instance.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(grid_type), | intent(in) | :: | self | Grid instance |
Lower bound indices
pure function getUpperBounds(self) result(ub)
!! Returns the upper bounds of the grid instance.
class(grid_type),intent(in) :: self !! Grid instance
integer(kind=intkind),dimension(2) :: ub !! Lower bound indices
ub = self % ub
endfunction getUpperBounds