EiffelBase class
(HTML page generated by ISE Eiffel 4.2)
Eiffel Class
indexing
description: "Cursors for hash table traversal";
status: "See notice at end of class";
names: linked_list_cursor, cursor;
contents: generic;
date: "$Date: 2007-03-30 19:10:11 +0000 (Fri, 30 Mar 2007) $";
revision: "$Revision: 95354 $"
class HASH_TABLE_CURSOR
inherit
CURSOR
creation
make
feature {NONE} -- Initialization
make (pos: INTEGER) is
-- Create a new cursor.
do
position := pos
ensure
position_set: position = pos
end;
feature {HASH_TABLE} -- Access
position: INTEGER;
-- Cursor position
end -- class HASH_TABLE_CURSOR
|