INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES

indexing

title: "Hash lists: containers which store its one element entries", "widely using their ability to be associated with integers"
project: "Visual Eiffel"
revision: "$Revision: 1.2 $"
copyright: "Copyright (C) 1996-2005 Object Tools Group"
license: "http://visual-eiffel.com/license"
cluster: containers
class HASH_LIST_ [G -> HASHABLE]
inherit

LIST_ [G]
rename
make as list_make
export
{NONE}
list_make
redefine
default_size,
extend,
find_first,
find_next,
get_counterweight,
guide,
list_make
end
creation

make
feature -- Operations

make (is_unique: BOOLEAN; initial_capacity: INTEGER)
-- tells the container if its entries must be unigue and sets
-- the initial amount of slots to be allocated for storing entries
require
proper_initial_slots: initial_capacity > 0
end -- class HASH_LIST_

INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES