class EL_INTEGER_32_SPARSE_ARRAY
Client examples: BASE_AUTOTEST_APP
Sparse array table with INTEGER_32 keys
note
description: "Sparse array table with ${INTEGER_32} keys"
author: "Finnian Reilly"
copyright: "Copyright (c) 2001-2022 Finnian Reilly"
contact: "finnian at eiffel hyphen loop dot com"
license: "MIT license (See: en.wikipedia.org/wiki/MIT_License)"
date: "2025-04-28 11:43:01 GMT (Monday 28th April 2025)"
revision: "2"
class
EL_INTEGER_32_SPARSE_ARRAY [G]
inherit
EL_SPARSE_ARRAY_TABLE [G, INTEGER_32]
create
make, make_empty
feature {NONE} -- Implementation
as_integer (key: INTEGER_32): INTEGER
do
Result := key
end
index_to_key (index: INTEGER): INTEGER_32
do
Result := index
end
end