| Type | Visibility | Attributes | Name | Initial | |||
|---|---|---|---|---|---|---|---|
| integer(kind=int32), | public, | allocatable | :: | x(:) | |||
| integer(kind=int32), | public, | allocatable | :: | y(:) |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(type_int_2d), | intent(inout) | :: | self |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(type_int_2d), | intent(inout) | :: | self | |||
| integer(kind=int32), | intent(in) | :: | length | |||
| integer(kind=int32), | intent(in), | optional | :: | initialize_value |
type :: type_int_2d integer(int32), allocatable :: x(:) integer(int32), allocatable :: y(:) contains procedure, pass(self) :: initialize => initialize_type_int_2d procedure, pass(self) :: destroy => destroy_type_int_2d end type type_int_2d