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,bae7ef2665942955 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-09-15 06:39:56 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!lnsnews.lns.cornell.edu!newsstand.cit.cornell.edu!ngpeer.news.aol.com!newsfeed1!bredband!uio.no!feed.news.nacamar.de!fu-berlin.de!uni-berlin.de!tar-alcarin.cbb-automation.DE!not-for-mail From: Dmitry A. Kazakov Newsgroups: comp.lang.ada Subject: Re: containers and garbage collections. Date: Mon, 15 Sep 2003 15:47:45 +0200 Message-ID: <4bgbmvc1933igu2olve437akuoc0c2lih0@4ax.com> References: <2458809.CYNMQ0Kujp@linux1.krischik.com> <23635057.dHrhOAZpeb@linux1.krischik.com> NNTP-Posting-Host: tar-alcarin.cbb-automation.de (212.79.194.111) Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: news.uni-berlin.de 1063633193 26846736 212.79.194.111 (16 [77047]) X-Newsreader: Forte Agent 1.8/32.548 Xref: archiver1.google.com comp.lang.ada:42522 Date: 2003-09-15T15:47:45+02:00 List-Id: On Sat, 13 Sep 2003 11:45:14 +0200, Martin Krischik wrote: >Will it work with any combination of tagged types incl. controled types any >derived types of Element_Type? If so I stay corrected and will rething my >design. Yes it will, as Matthew Heaney wrote. What you will lose with it, and there is always something to lose, is that the type operations will not be considered dispatching. So if the actual of Element_Type is class-wide, and you want to dispatch somewhere in a generic body, you will need to pass a [class-wide] wrapper subprogram around a primitive operation instead of the primitive operation itself. --- Regards, Dmitry Kazakov www.dmitry-kazakov.de