This site contains older material on Eiffel. For the main Eiffel page, see http://www.eiffel.com.

EiffelBase class
(HTML page generated by ISE Eiffel 4.2)

Eiffel Class
indexing
	description: "Circular chains implemented as two-way linked lists";
	status: "See notice at end of class";
	names: two_way_circular, ring, sequence;
	representation: linked;
	access: index, cursor, membership;
	contents: generic;
	date: "$Date: 2007-03-30 11:10:11 -0800 (Fri, 30 Mar 2007) $";
	revision: "$Revision: 95354 $"

class TWO_WAY_CIRCULAR [G]

inherit
	LINKED_CIRCULAR [G]
		redefine
			list
		end

creation
	make

feature -- Implementation

	list: TWO_WAY_LIST [G];

end -- class TWO_WAY_CIRCULAR