note
	description: "Adapters for class ARRAY"
	library: "Gobo Eiffel Kernel Library"
	copyright: "Copyright (c) 2012, Eric Bezault and others"
	license: "MIT License"
	date: "$Date: 2016-05-06 19:15:38 +0000 (Fri, 06 May 2016) $"
	revision: "$Revision: 98678 $"

class interface
	KL_ARRAY [G]

create 
	make_empty,
	make_filled

feature -- Resizing

	new_rebase (a_lower: like lower)
			-- Without changing the actual content of Current we set lower to a_lower
			-- and upper accordingly to a_lower + count - 1.
			--
			-- Note: needed in compatible mode.
		ensure
			lower_set: lower = a_lower
			upper_set: upper = a_lower + old count - 1
	
end -- class KL_ARRAY

Generated by ISE EiffelStudio