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=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,cda33fc7f63c2885 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-01-14 06:49:22 PST Path: archiver1.google.com!news1.google.com!sn-xit-02!sn-post-01!supernews.com!corp.supernews.com!not-for-mail From: "Matthew Heaney" Newsgroups: comp.lang.ada Subject: Re: list strawman Date: Mon, 14 Jan 2002 09:53:55 -0500 Organization: Posted via Supernews, http://www.supernews.com Message-ID: References: <6i%_7.8890$fG.50588@rwcrnsc51.ops.asp.att.net> <4519e058.0201100639.76966716@posting.google.com> <3C3E798D.CCF05098@attbi.com> X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.50.4807.1700 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4807.1700 X-Complaints-To: newsabuse@supernews.com Xref: archiver1.google.com comp.lang.ada:18905 Date: 2002-01-14T09:53:55-05:00 List-Id: "Simon Wright" wrote in message news:x7vy9j3oj5t.fsf@smaug.pushface.org... > Mark Biggar writes: > > > use "is <>" for "=" then the user only needs to explicitly specify > > it if it isn't named "=". > > I had a case (OA7.2, I can't get 7.2.1 to install properly) where I > had to have 'function Eq' rather than 'function "="' as a generic > formal subprogram, or it got confused. Can't you just say: generic type T is private; with function Eq (L, R : T) return Boolean is "="; package GP is