Automatic generation produced by ISE Eiffel

Classes Clusters Cluster hierarchy Chart Relations Text Flat Contracts Go to:
note description: "Real values, single precision" external_name: "System.Single" assembly: "mscorlib" library: "Free implementation of ELKS library" status: "See notice at end of class." legal: "See notice at end of class." date: "$Date: 2012-05-23 21:13:10 -0700 (Wed, 23 May 2012) $" revision: "$Revision: 91981 $" frozen expanded class interface REAL_32 create default_create, make_from_reference convert make_from_reference ({REAL_32_REF}), to_double: {REAL_64} feature -- Comparison is_less alias "<" (other: REAL_32): BOOLEAN -- Is `other' greater than current real? feature -- Status Report is_nan: BOOLEAN -- Is current the representation of nan? is_negative_infinity: BOOLEAN -- Is current the representation of negative_infinity? is_positive_infinity: BOOLEAN -- Is current the representation of positive_infinity? feature -- Conversion truncated_to_integer: INTEGER_32 -- Integer part (same sign, largest absolute -- value no greater than current object's) truncated_to_integer_64: INTEGER_64 -- Integer part (same sign, largest absolute -- value no greater than current object's) to_double: REAL_64 -- Current seen as a double ceiling_real_32: REAL_32 -- Smallest integral value no smaller than current object floor_real_32: REAL_32 -- Greatest integral value no greater than current object feature -- Basic operations plus alias "+" (other: REAL_32): REAL_32 -- Sum with `other' minus alias "-" (other: REAL_32): REAL_32 -- Result of subtracting `other' product alias "*" (other: REAL_32): REAL_32 -- Product by `other' quotient alias "/" (other: REAL_32): REAL_32 -- Division by `other' power alias "^" (other: REAL_64): REAL_64 -- Current real to the power `other' identity alias "+": REAL_32 -- Unary plus opposite alias "-": REAL_32 -- Unary minus feature -- Output out: STRING_8 -- Printable representation of real value 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 REAL_32
Classes Clusters Cluster hierarchy Chart Relations Text Flat Contracts Go to:

-- Generated by ISE Eiffel --
For more details: www.eiffel.com