array2d Derived Type

type, public :: array2d


Contents

Source Code


Components

TypeVisibility AttributesNameInitial
real(kind=rk), public, allocatable:: array(:,:)

Constructor

public interface array2d

  • private pure function array2d_constructor(dims) result(a)

    Overloads the default type constructor.

    Arguments

    Type IntentOptional AttributesName
    integer(kind=ik), intent(in) :: dims(2)

    Return Value type(array2d)


Source Code

  type :: array2d
    real(rk), allocatable :: array(:,:)
  end type array2d