note
	description: "Unicode characters, with comparison operations"
	assembly: "mscorlib"
	external_name: "System.UInt32"
	library: "Free implementation of ELKS library"
	status: "See notice at end of class."
	legal: "See notice at end of class."
	date: "$Date: 2012-10-30 15:32:46 +0000 (Tue, 30 Oct 2012) $"
	revision: "$Revision: 92022 $"

frozen expanded class 
	CHARACTER_32

inherit
	CHARACTER_32_REF
		redefine
			code,
			natural_32_code,
			to_character_8
		end

create 
	default_create,
	make_from_reference

convert
	make_from_reference ({CHARACTER_32_REF})

feature -- Access

	code: INTEGER_32
			-- Associated integer value
		do
			Result := natural_32_code.as_integer_32
		end

	natural_32_code: NATURAL_32
			-- Associated natural value
		do
			Result := Precursor
		end
	
feature -- Conversion

	to_character_8: CHARACTER_8
			-- Convert current to CHARACTER_8
		do
			Result := Precursor
		end
	
note
	copyright: "Copyright (c) 1984-2012, 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 CHARACTER_32

Generated by ISE EiffelStudio