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