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,48fa8e3cfaec41af X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-07-23 05:24:49 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!logbridge.uoregon.edu!newsfeed.stueberl.de!newsfeed.vmunix.org!newsfeed01.sul.t-online.de!t-online.de!newspeer1-gui.server.ntli.net!ntli.net!newsfep1-win.server.ntli.net.POSTED!53ab2750!not-for-mail From: "chris.danx" Newsgroups: comp.lang.ada References: Subject: Re: worth the hassle? X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Message-ID: Date: Tue, 23 Jul 2002 13:16:58 +0100 NNTP-Posting-Host: 80.5.140.234 X-Complaints-To: abuse@ntlworld.com X-Trace: newsfep1-win.server.ntli.net 1027426654 80.5.140.234 (Tue, 23 Jul 2002 13:17:34 BST) NNTP-Posting-Date: Tue, 23 Jul 2002 13:17:34 BST Organization: ntl Cablemodem News Service Xref: archiver1.google.com comp.lang.ada:27330 Date: 2002-07-23T13:16:58+01:00 List-Id: Is using address_to_access_conversions the correct solution? Something along the lines of package List_Address_Conversions is new System.Address_To_Access_Conversions (List_Type); function First (List : in List_Type) return Iterator_Type is begin ... return Iterator_Type'(List_Address_Conversions.to_pointer(List'Address), List.First); end First; ?