From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=0.2 required=5.0 tests=BAYES_00,INVALID_MSGID, REPLYTO_WITHOUT_TO_CC autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: fac41,c52c30d32b866eae X-Google-Attributes: gidfac41,public X-Google-Thread: 103376,2ea02452876a15e1 X-Google-Attributes: gid103376,public X-Google-Thread: 1108a1,c52c30d32b866eae X-Google-Attributes: gid1108a1,public From: mbk@caffeine.engr.utk.edu (Matt Kennel) Subject: Re: Real OO Date: 1996/05/01 Message-ID: <4m6kcg$sa6@gaia.ns.utk.edu>#1/1 X-Deja-AN: 152345442 references: <67SpgKdV3RB@herold.franken.de> followup-to: comp.lang.eiffel,comp.lang.ada,comp.object organization: University of Tennessee, Knoxville and Oak Ridge National Laboratory reply-to: kennel@msr.epm.ornl.gov newsgroups: comp.lang.eiffel,comp.lang.ada,comp.object Date: 1996-05-01T00:00:00+00:00 List-Id: : jsa@organon.com wrote 19.04.96 on Re: Real OO: : > Simply this: Classwide operations can be defined anywhere by anyone. : > They do not have to be defined along with the primitive types in : > their packages. And how is this different from Eiffel? class A is end class B is end class C is end class ANYWHERE_BY_ANYONE is this_is_what_ada_calls_a_classwide_operation(a:A,b:B,c:C) is ... end; end