Automatic generation produced by ISE Eiffel

Classes Clusters Cluster hierarchy Chart Relations Text Flat Contracts Flat contracts Go to:
indexing description: "References to objects containing an integer value" status: "See notice at end of class" date: "$Date: 2001-11-16 20:32:23 +0000 (Fri, 16 Nov 2001) $" revision: "$Revision: 51435 $" class interface INTEGER_REF feature -- Access item: INTEGER -- Integer value hash_code: INTEGER -- Hash code value sign: INTEGER -- Sign value (0, -1 or 1) ensure three_way: Result = three_way_comparison (zero) one: like Current -- Neutral element for "*" and "/" zero: like Current -- Neutral element for "+" and "-" ascii_char: CHARACTER -- Returns corresponding ASCII character to item value. feature -- Comparison infix "<" (other: like Current): BOOLEAN -- Is current integer less than other? is_equal (other: like Current): BOOLEAN -- Is other attached to an object of the same type -- as current object and identical to it? three_way_comparison (other: INTEGER_REF): INTEGER -- If current object equal to other, 0 -- if smaller, -1; if greater, 1 feature -- Element change set_item (i: INTEGER) -- Make i the item value. feature -- Status report divisible (other: INTEGER_REF): BOOLEAN -- May current object be divided by other? ensure then value: Result = (other.item /= 0) exponentiable (other: NUMERIC): BOOLEAN -- May current object be elevated to the power other? ensure then safe_values: ((other.conforms_to (0) and item /= 0) or (other.conforms_to (0.0) and item > 0)) implies Result is_hashable: BOOLEAN -- May current object be hashed? -- (True if it is not its type's default.) feature -- Conversion to_boolean: BOOLEAN -- True if not zero. feature -- Basic operations abs: INTEGER -- Absolute value ensure non_negative: Result >= 0 same_absolute_value: (Result = item) or (Result = - item) infix "+" (other: like Current): like Current -- Sum with other infix "-" (other: like Current): like Current -- Result of subtracting other infix "*" (other: like Current): like Current -- Product by other infix "/" (other: like Current): DOUBLE -- Division by other require other_exists: other /= void good_divisor: divisible (other) prefix "+": like Current -- Unary plus prefix "-": like Current -- Unary minus infix "//" (other: like Current): like Current -- Integer division of Current by other infix "\\" (other: like Current): like Current -- Remainder of the integer division of Current by other require other_exists: other /= void good_divisor: divisible (other) ensure result_exists: Result /= void infix "^" (other: NUMERIC): DOUBLE -- Integer power of Current by other infix "|..|" (other: INTEGER): INTEGER_INTERVAL -- Interval from current element to other -- (empty if other less than current integer) feature -- Conversion to_integer_8: INTEGER_8 -- Convert item into an INTEGER_8 value. require not_too_small: item >= - 128 not_too_big: item <= 127 to_integer_16: INTEGER_16 -- Convert item into an INTEGER_16 value. require not_too_small: item >= - 32768 not_too_big: item <= 32767 to_integer_64: INTEGER_64 -- Convert item into an INTEGER_64 value. feature -- Bit operations infix "&" (i: like Current): like Current -- Bitwise and between Current' and i. -- Was declared in INTEGER_REF as synonym of bit_and. bit_and (i: like Current): like Current -- Bitwise and between Current' and i. -- Was declared in INTEGER_REF as synonym of &. infix "|" (i: like Current): like Current -- Bitwise or between Current' and i. -- Was declared in INTEGER_REF as synonym of bit_or. bit_or (i: like Current): like Current -- Bitwise or between Current' and i. -- Was declared in INTEGER_REF as synonym of |. bit_xor (i: like Current): like Current -- Bitwise xor between Current' and i. bit_not: like Current -- One's complement of Current. bit_shift (n: INTEGER): like Current -- Shift Current from n position to right if n positive, -- to left otherwise. require n_less_or_equal_to_32: n <= 32 n_greater_or_equal_to_minus_32: n >= - 32 infix "|<<" (n: INTEGER): like Current -- Shift Current from n position to left. -- Was declared in INTEGER_REF as synonym of bit_shift_left. require n_nonnegative: n >= 0 n_less_or_equal_to_32: n <= 32 bit_shift_left (n: INTEGER): like Current -- Shift Current from n position to left. -- Was declared in INTEGER_REF as synonym of `|<<'. require n_nonnegative: n >= 0 n_less_or_equal_to_32: n <= 32 infix "|>>" (n: INTEGER): like Current -- Shift Current from n position to right. -- Was declared in INTEGER_REF as synonym of bit_shift_right. require n_nonnegative: n >= 0 n_less_or_equal_to_32: n <= 32 bit_shift_right (n: INTEGER): like Current -- Shift Current from n position to right. -- Was declared in INTEGER_REF as synonym of `|>>'. require n_nonnegative: n >= 0 n_less_or_equal_to_32: n <= 32 bit_test (n: INTEGER): BOOLEAN -- Test n-th position of Current. require n_nonnegative: n >= 0 n_less_than_32: n < 32 feature -- Output out: STRING -- Printable representation of integer value invariant sign_times_abs: sign * abs = item indexing library: "[ EiffelBase: Library of reusable components for Eiffel. ]" status: "[ Copyright 1986-2001 Interactive Software Engineering (ISE). For ISE customers the original versions are an ISE product covered by the ISE Eiffel license and support agreements. ]" license: "[ EiffelBase may now be used by anyone as FREE SOFTWARE to develop any product, public-domain or commercial, without payment to ISE, under the terms of the ISE Free Eiffel Library License (IFELL) at http://eiffel.com/products/base/license.html. ]" source: "[ Interactive Software Engineering Inc. ISE Building 360 Storke Road, Goleta, CA 93117 USA Telephone 805-685-1006, Fax 805-685-6869 Electronic mail <info@eiffel.com> Customer support http://support.eiffel.com ]" info: "[ For latest info see award-winning pages: http://eiffel.com ]" end -- class INTEGER_REF
Classes Clusters Cluster hierarchy Chart Relations Text Flat Contracts Flat contracts Go to:

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