EiffelBase class
(HTML page generated by ISE Eiffel 4.2)
Eiffel Class
indexing
description: "Cursors for arrayed lists";
status: "See notice at end of class";
names: fixed_list_cursor, cursor;
date: "$Date: 2007-03-30 11:10:11 -0800 (Fri, 30 Mar 2007) $";
revision: "$Revision: 95354 $"
class ARRAYED_LIST_CURSOR
inherit
CURSOR
creation
make
feature {ARRAYED_LIST, FIXED_LIST} -- Initialization
make (current_index: INTEGER) is
-- Create a cursor and set it up on current_index.
do
index := current_index
end;
feature {ARRAYED_LIST, FIXED_LIST} -- Access
index: INTEGER;
-- Index of current item
end -- class ARRAYED_LIST_CURSOR
|