note description: "Compiled class TUPLE" legal: "See notice at end of class." status: "See notice at end of class." date: "$Date$" revision: "$Revision$" class TUPLE_CLASS_B inherit EIFFEL_CLASS_C redefine actual_type, is_tuple, partial_actual_type end create make feature -- Status report is_tuple: BOOLEAN = True -- Current class is TUPLE. feature -- Actual class type actual_type: TUPLE_TYPE_A -- Actual type of the class local i, count: INTEGER actual_generic: ARRAY [FORMAL_A] formal: FORMAL_A do if generics /= Void then from i := 1 count := generics.count create actual_generic.make (1, count) until i > count loop create formal.make (False, False, 1) actual_generic.put (formal, i) i := i + 1 end else create actual_generic.make (1, 0) end create Result.make (class_id, actual_generic) if lace_class.is_attached_by_default then Result.set_is_attached else Result.set_is_implicitly_attached end end feature {CLASS_TYPE_AS} -- Actual class type partial_actual_type (gen: ARRAY [TYPE_A]; is_exp: BOOLEAN; is_sep: BOOLEAN): CL_TYPE_A -- Actual type of `current depending on the context in which it is declared -- in CLASS_TYPE_AS. That is to say, it could have generics `gen' but not -- be a generic class. It simplifies creation of `CL_TYPE_A' instances in -- CLASS_TYPE_AS when trying to resolve types, by using dynamic binding -- rather than if statements. do if gen /= Void then create {TUPLE_TYPE_A} Result.make (class_id, gen) else create {TUPLE_TYPE_A} Result.make (class_id, create {ARRAY [TYPE_A]}.make (1, 0)) end -- Note that TUPLE is not expanded by default. if is_exp then Result.set_expanded_mark elseif is_sep then Result.set_separate_mark end if is_expanded then Result.set_expanded_class_mark end end invariant types_has_only_one_element: types /= Void implies types.count <= 1 note copyright: "Copyright (c) 1984-2006, Eiffel Software" license: "GPL version 2 (see http://www.eiffel.com/licensing/gpl.txt)" licensing_options: "http://www.eiffel.com/licensing" copying: "[ This file is part of Eiffel Software's Eiffel Development Environment. Eiffel Software's Eiffel Development Environment is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2 of the License (available at the URL listed under "license" above). Eiffel Software's Eiffel Development Environment is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Eiffel Software's Eiffel Development Environment; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA ]" source: "[ Eiffel Software 356 Storke Road, Goleta, CA 93117 USA Telephone 805-685-1006, Fax 805-685-6869 Website http://www.eiffel.com Customer support http://support.eiffel.com ]" end