array_list_size Function

private pure function array_list_size(this)

Arguments

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

Return Value integer

Description

Returns the number of items in the list


Source Code

  pure integer function array_list_size(this)
    !* Author: Chris MacMackin
    !  Date: March 2016
    !
    ! Returns the number of items in the list
    !
    class(array_list), intent(in) :: this
  end function array_list_size