indexing
description: "[
Project-wide universal properties.
This class is an ancestor to all developer-written classes.
ANY may be customized for individual projects or teams.
]"
status: "See notice at end of class"
date: "$Date$"
revision: "$Revision$"
class interface
ANY
feature
generating_type: STRING
generator: STRING
feature
frozen deep_equal (some: ANY; other: like some): BOOLEAN
someother
ensure
shallow_implies_deep: standard_equal (some, other) implies Result
both_or_none_void: (some = void) implies (Result = (other = void))
same_type: (Result and (some /= void)) implies some.same_type (other)
symmetric: Result implies deep_equal (other, some)
frozen equal (some: ANY; other: like some): BOOLEAN
someother
ensure
definition: Result = (some = void and other = void) or else ((some /= void and other /= void) and then some.is_equal (other))
is_equal (other: like Current): BOOLEAN
other
require
other_not_void: other /= void
ensure
symmetric: Result implies other.is_equal (Current)
consistent: standard_is_equal (other) implies Result
frozen standard_equal (some: ANY; other: like some): BOOLEAN
someother
ensure
definition: Result = (some = void and other = void) or else ((some /= void and other /= void) and then some.standard_is_equal (other))
frozen standard_is_equal (other: like Current): BOOLEAN
other
require
other_not_void: other /= void
ensure
same_type: Result implies same_type (other)
symmetric: Result implies other.standard_is_equal (Current)
feature
conforms_to (other: ANY): BOOLEAN
other
require
other_not_void: other /= void
same_type (other: ANY): BOOLEAN
other
require
other_not_void: other /= void
ensure
definition: Result = (conforms_to (other) and other.conforms_to (Current))
feature
frozen clone (other: ANY): like other
other
other
otherclonecopy
copy
ensure
equal: equal (Result, other)
copy (other: like Current)
other
require
other_not_void: other /= void
type_identity: same_type (other)
ensure
is_equal: is_equal (other)
frozen deep_clone (other: ANY): like other
other
other
ensure
deep_equal: deep_equal (other, Result)
frozen deep_copy (other: like Current)
tempdeep_cloneother
copytemp
require
other_not_void: other /= void
ensure
deep_equal: deep_equal (Current, other)
frozen standard_clone (other: ANY): like other
other
other
ensure
equal: standard_equal (Result, other)
frozen standard_copy (other: like Current)
other
require
other_not_void: other /= void
type_identity: same_type (other)
ensure
is_standard_equal: standard_is_equal (other)
feature
frozen default: like Current
default_create
frozen default_pointer: POINTER
POINTER
pdefault
pPOINTER
default_rescue
frozen do_nothing
frozen void: NONE
feature
io: STD_FILES
out: STRING
ANYtagged_out
print (some: ANY)
some
frozen tagged_out: STRING
ANYout
feature
operating_environment: OPERATING_ENVIRONMENT
invariant
reflexive_equality: standard_is_equal (Current)
reflexive_conformance: conforms_to (Current)
reflexive_equality: standard_is_equal (Current)
reflexive_conformance: conforms_to (Current)
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 -- ANY