Gobo Eiffel Kernel Library
Copyright (c) 1999, Eric Bezault and others
Eiffel Forum License v2 (see forum.txt)
$Date: 2004/12/22 22:44:42 $
$Revision: 1.7 $
[041219] Use SPECIAL and KL_SPECIAL_ROUTINES instead.
-- Create a new fixed array being able to contain n items.
-- Create a new fixed array with items from an_array.
-- Does v appear in an_array?
-- Make sure that the lower bound of an_array is zero.
-- Reset all items to default values.
-- Resize an_array so that it contains n items.
-- Do not lose any previously entered items.
-- Note: the returned fixed array might be an_array
-- or a newly created fixed array 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. Use make_from_array if this is a concern.
-- (From KL_IMPORTED_FIXED_ARRAY_TYPE)
Routines that ought to be in class FIXED_ARRAY. %
%A fixed array is a zero-based indexed sequence of values, %
%equipped with features put, item and count.