note
	description: "Concrete of an external iteration cursor for {TWO_WAY_LIST}."
	library: "EiffelBase: Library of reusable components for Eiffel."
	status: "See notice at end of class."
	legal: "See notice at end of class."
	copyright: "Copyright (c) 1984-2011, Eiffel Software and others"
	license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
	date: "$Date: 2016-03-02 21:15:09 +0000 (Wed, 02 Mar 2016) $"
	revision: "$Revision: 98557 $"

class interface
	TWO_WAY_LIST_ITERATION_CURSOR [G]

create 
	make

feature -- Access

	item: G
			-- Item at current cursor position.
	
feature -- Status report

	after: BOOLEAN
			-- Are there no more items to iterate over?
	
feature -- Cursor movement

	start
			-- Move to first position.

	forth
			-- Move to next position.
	
note
	copyright: "Copyright (c) 1984-2016, Eiffel Software and others"
	license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
	source: "[
		Eiffel Software
		5949 Hollister Ave., Goleta, CA 93117 USA
		Telephone 805-685-1006, Fax 805-685-6869
		Website http://www.eiffel.com
		Customer support http://support.eiffel.com
	]"

end -- class TWO_WAY_LIST_ITERATION_CURSOR

Generated by ISE EiffelStudio