array_list_contents_type Function

private pure function array_list_contents_type(this) result(cont)

Arguments

Type IntentOptional AttributesName
class(array_list), intent(in) :: this

Return Value class(container), allocatable

Description

Returns a container with the dynamic type of the contents of this list.


Source Code

  pure function array_list_contents_type(this) result(cont)
    !* Author: Chris MacMackin
    !  Date: March 2016
    !
    ! Returns a container with the dynamic type of the contents of this
    ! list.
    !
    class(array_list), intent(in) :: this
    class(container), allocatable :: cont
  end function array_list_contents_type