INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES

indexing

title: "Lists: containers with one element entries", "implementing a first-in, first-out policy and"
: "supporting traversal in the both directions"
project: "Visual Eiffel"
revision: "$Revision: 1.2 $"
copyright: "Copyright (C) 1996-2005 Object Tools Group"
license: "http://visual-eiffel.com/license"
cluster: containers
class LIST_ [G]
inherit

SIMPLE_LIST_ [G]
undefine
cursor
redefine
cursor_at,
guide,
item_at,
make
end

TRAVERSABLE_
end
creation

make
feature -- Operations

make (is_unique: BOOLEAN)
-- tells the container if its entries must be unigue
feature -- Queries

item_at (cs: CURSOR_): G
-- delivers the entry of the list the cursor is positioned to

cursor_at (x: G): CURSOR_
-- delivers a new cursor positioned to the entry; if there is no
-- such entry currently stored in the list Void is delivered
end -- class LIST_

INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES