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,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII X-Google-Thread: 103376,418229d2389bacc6 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-06-13 13:45:01 PST Path: archiver1.google.com!newsfeed.google.com!newsfeed.stanford.edu!newsfeeds.belnet.be!news.belnet.be!opentransit.net!proxad.net!feeder2-1.proxad.net!nnrp1.proxad.net.POSTED!not-for-mail Message-ID: <3B27EDC1.52A468E6@free.fr> From: Carbonne Damien X-Mailer: Mozilla 4.75 [fr] (X11; U; Linux 2.2.17-21mdk i686) X-Accept-Language: en MIME-Version: 1.0 Newsgroups: comp.lang.ada Subject: Re: Overloading and / or / = / etc etc References: <9g8hj6$o3t$1@dns3.cae.ca> Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Date: Wed, 13 Jun 2001 20:45:00 GMT NNTP-Posting-Host: 213.228.9.186 X-Complaints-To: abuse@proxad.net X-Trace: nnrp1.proxad.net 992465100 213.228.9.186 (Wed, 13 Jun 2001 22:45:00 CEST) NNTP-Posting-Date: Wed, 13 Jun 2001 22:45:00 CEST Organization: Guest of ProXad - France Xref: archiver1.google.com comp.lang.ada:8692 Date: 2001-06-13T20:45:00+00:00 List-Id: Phil Foran a �crit : > Hi all, > > In the package im currently working on, ive got two lines which both use a > standard operator (one is an 'or' the other is a '=') but they are using > overloaded versions from two other packages. The problem is that the two > other packages which contain the overloaded 'or' and '=' each contain a > different overloaded '=' and 'or' causing problems and ambiguity when > compiling. > > Im wondering if there is a way to do PACKAGEX.= or PACKAGEY.or, when i try > these i just get syntax errors, but im sure there must be a way to do it. > try PACKAGEX."="(x, y) or PACKAGEY."or"(x, y) > > If anyone knows the syntax for what i need, please let me know > > Thanx in advance! > > Phil