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,93ab7fc5388e249 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-12-05 13:38:12 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!logbridge.uoregon.edu!arclight.uoregon.edu!wn4feed!worldnet.att.net!204.127.198.204!attbi_feed4!attbi.com!rwcrnsc53.POSTED!not-for-mail From: "Mark Lundquist" Newsgroups: comp.lang.ada References: <3C0E1FA1.45A38A75@brighton.ac.uk> <%7sP7.49836$xS6.82296@www.newsranger.com> Subject: Re: List container strawman 1.3 X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Message-ID: <7twP7.2033$802.147165@rwcrnsc53> Date: Wed, 05 Dec 2001 21:38:11 GMT NNTP-Posting-Host: 204.127.202.216 X-Complaints-To: abuse@attbi.com X-Trace: rwcrnsc53 1007588291 204.127.202.216 (Wed, 05 Dec 2001 21:38:11 GMT) NNTP-Posting-Date: Wed, 05 Dec 2001 21:38:11 GMT Organization: AT&T Broadband Xref: archiver1.google.com comp.lang.ada:17475 Date: 2001-12-05T21:38:11+00:00 List-Id: "Mark Lundquist" wrote in message news:aewP7.2149$dp6.152302@rwcrnsc54... > > > type Iterator (My_List : access List) is limited record > My_Item : Item_Ptr; > end record; > I should have added...: The way you get one of these Iterators is like this: L : aliased List; . . . I : Iterator (L'Access); (or allocate the List using 'new');