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: "Queues (first-in, first-out dispensers), without commitment to a particular representation";
	status: "See notice at end of class";
	names: queue, dispenser;
	access: fixed, fifo, membership;
	contents: generic;
	date: "$Date: 2007-03-30 19:10:11 +0000 (Fri, 30 Mar 2007) $";
	revision: "$Revision: 95354 $"

deferred class QUEUE [G]

inherit
	DISPENSER [G]
		export
			{NONE} prune, prune_all
		end

feature -- Element change

	force (v: like item) is
			-- Add v as newest item.
		deferred
		end;

end -- class QUEUE