Automatic generation produced by ISE Eiffel
note description: "Truth values, with the boolean operations" external_name: "System.Boolean" 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 BOOLEAN create default_create, make_from_reference convert make_from_reference ({BOOLEAN_REF}) feature -- Basic operations conjuncted alias "and" (other: BOOLEAN): BOOLEAN -- Boolean conjunction with `other' conjuncted_semistrict alias "and then" (other: BOOLEAN): BOOLEAN -- Boolean semi-strict conjunction with `other' implication alias "implies" (other: BOOLEAN): BOOLEAN -- Boolean implication of `other' -- (semi-strict) negated alias "not": BOOLEAN -- Negation disjuncted alias "or" (other: BOOLEAN): BOOLEAN -- Boolean disjunction with `other' disjuncted_semistrict alias "or else" (other: BOOLEAN): BOOLEAN -- Boolean semi-strict disjunction with `other' disjuncted_exclusive alias "xor" (other: BOOLEAN): BOOLEAN -- Boolean exclusive or with `other' 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 BOOLEAN -- Generated by ISE Eiffel --
For more details: www.eiffel.com