extent_obj Derived Type

type, public :: extent_obj

Extents of a region


Components

Type Visibility Attributes Name Initial
integer, public :: hi(3) = -1

High bound

integer, public :: lo(3) = -1

Low bound


Source Code

  type :: extent_obj
    !> Extents of a region
    integer        :: lo(3) = -1                                               !! Low bound
    integer        :: hi(3) = -1                                               !! High bound
  end type extent_obj