note
	description: "Operations of objects of a given type (the generic parameter)."
	library: "Gobo Eiffel Kernel Library"
	copyright: "Copyright (c) 2018, Eric Bezault and others"
	license: "MIT License"
	date: "$Date: 2019-02-07 22:54:15 +0000 (Thu, 07 Feb 2019) $"
	revision: "$Revision: 102807 $"

class interface
	KL_TYPE [G]

create 
	default_create

feature -- Status report

	same_objects (u, v: G): BOOLEAN
			-- Are u and v the same objects?
			-- Use '=', except in case of {REAL_32}.nan and {REAL_64}.nan
			-- where NaNs are considered the same.
		ensure
			instance_free: class

	same_detachable_objects (u, v: detachable G): BOOLEAN
			-- Are u and v the same objects?
			-- Use '=', except in case of {REAL_32}.nan and {REAL_64}.nan
			-- where NaNs are considered the same.
		ensure
			instance_free: class
	
end -- class KL_TYPE

Generated by ISE EiffelStudio