INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES

indexing

title: "Array view for user-supplied memory region. See RTS_MEMORY_MAP for more."
project: "Visual Eiffel Library"
revision: "$Revision: 1.1 $"
copyright: "Copyright (C) 1996-2005 Object Tools Group"
license: "http://visual-eiffel.com/license"
cluster: kernel
class RTS_MEMORY_MAPPED_AREA_ARRAY [G]
inherit

RTS_MEMORY_MAPPED_AREA [G]
rename
make as set_area
undefine
copy
end

RTS_MEMORY_MAPPED_ARRAY [G]
end
creation

make
feature -- Creation

make (a: POINTER; n: INTEGER)
-- Bind array of 'n' items to memory address 'a'
require
non_negative_size: n >= 0
ensure
count_set: count = n
area_set: area = a
end -- class RTS_MEMORY_MAPPED_AREA_ARRAY

INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES