array1d Derived Type

type, public :: array1d


Contents

Source Code


Components

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

Constructor

public interface array1d

  • private pure function array1d_constructor(length) result(a)

    Overloads the default type constructor.

    Arguments

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

    Return Value type(array1d)


Source Code

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