note
	description: "[
		Equivalent of HASH_TABLE [NATURAL_32, ANY], since this type cannot be written
		as ANY does not inherit from HASHABLE
	]"
	legal: "See notice at end of class."
	status: "See notice at end of class."
	date: "$Date: 2018-01-22 11:21:50 +0000 (Mon, 22 Jan 2018) $"
	revision: "$Revision: 101254 $"

class interface
	SED_OBJECTS_TABLE

create 
	make


create {SED_OBJECTS_TABLE}
	table_make

feature -- Access

	index (an_obj: separate ANY): NATURAL_32
			-- Index of an_obj in Current
	
feature -- Removal

	wipe_out
			-- Remove all items.
	
feature -- Implementation

	hash_code_of (p: POINTER): INTEGER_32
			-- Efficient implementation of {POINTER}.hash_code where we assume that POINTER
			-- values are aligned to the size of the POINTER, this will reduce the number
			-- of conflicts.
	
invariant
	not_is_dotnet: not {PLATFORM}.is_dotnet

note
	library: "EiffelBase: Library of reusable components for Eiffel."
	copyright: "Copyright (c) 1984-2018, Eiffel Software and others"
	license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
	source: "[
		Eiffel Software
		5949 Hollister Ave., Goleta, CA 93117 USA
		Telephone 805-685-1006, Fax 805-685-6869
		Website http://www.eiffel.com
		Customer support http://support.eiffel.com
	]"

end -- class SED_OBJECTS_TABLE

Generated by ISE EiffelStudio