INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES

indexing

title: "The manner of adding entries into keyed containers"
project: "Visual Eiffel"
revision: "$Revision: 1.2 $"
copyright: "Copyright (C) 1996-2005 Object Tools Group"
license: "http://visual-eiffel.com/license"
cluster: containers
deferred class KEYED_CONTAINER_ [G, H]
inherit

SIMPLE_CONTAINER_
end
feature -- Operations

put (x: G; k: H)
-- adds the new entry into the structure
-- 'require's will be specified later ...
require
dummy: false
end -- class KEYED_CONTAINER_

INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES