mapping Derived Type

type :: mapping


Components

Type Visibility Attributes Name Initial
integer(kind=ip), public, dimension(:), allocatable :: dest_start
integer(kind=ip), public, dimension(:), allocatable :: dest_end
integer(kind=ip), public, dimension(:), allocatable :: src_start
integer(kind=ip), public, dimension(:), allocatable :: src_end

Source Code

type :: mapping
    ! save the source and destination start and end values
    integer(ip),dimension(:),allocatable :: dest_start, dest_end, src_start, src_end
end type mapping