Gobo Eiffel Kernel Library
Copyright (c) 2003, Eric Bezault and others
Eiffel Forum License v2 (see forum.txt)
$Date: 2004/12/22 22:47:13 $
$Revision: 1.4 $
-- Create a new special object being able to contain n items.
-- Create a new special object with items from an_array.
-- Does v appear in an_array?
-- Reset all items to default values.
[040930] Use `an_array.clear_all instead.
-- Resize an_array so that it contains n items.
-- Do not lose any previously entered items.
-- Note: the returned special object might be an_array
-- or a newly created special object where items from
-- an_array have been copied to.
-- Fixed array filled with items from an_array.
-- The fixed array and an_array may share
-- internal data and/or an_array may be altered.
-- Use make_from_array if this is a concern.
Routines that ought to be in class SPECIAL. %
%A special object is a zero-based indexed sequence of values, %
%equipped with features put, item and count.