INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES

indexing

title: "Hash tables: containers which store its two element entries", "(element or item itself and the associated key) widely", "using the ability of keys to be transformed into 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_TABLE_ [G, H -> HASHABLE]
inherit

TABLE_ [G, H]
rename
make as table_make
export
{NONE}
table_make
redefine
default_size,
extend,
find_next,
get_counterweight,
guide,
table_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_TABLE_

INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES