array_list_append Subroutine

private pure subroutine array_list_append(this, item)

Arguments

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

Item to be appended to list

Description

Adds the provided item to the end of the list.


Source Code

  pure subroutine array_list_append(this, item)
    !* Author: Chris MacMackin
    !  Date: March 2016
    !
    ! Adds the provided item to the end of the list.
    !
    class(array_list), intent(inout) :: this
    class(*), intent(in) :: item !! Item to be appended to list
  end subroutine array_list_append