array_list_iter Function

private pure function array_list_iter(this)

Arguments

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

Return Value type(iterator)

Description

Returns an iterator containing the contents of this list as they were at the time this method was called.


Source Code

  pure type(iterator) function array_list_iter(this)
    !* Author: Chris MacMackin
    !  Date: March 2016
    !
    ! Returns an [[iterator]] containing the contents of this list
    ! as they were at the time this method was called.
    !
    class(array_list), intent(in) :: this
  end function array_list_iter