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,b1ebfe7f8f5e385d X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-05-01 18:14:42 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!headwall.stanford.edu!newshub.sdsu.edu!canoe.uoregon.edu!arclight.uoregon.edu!wn13feed!wn12feed!wn14feed!worldnet.att.net!204.127.198.203!attbi_feed3!attbi.com!rwcrnsc52.ops.asp.att.net.POSTED!not-for-mail From: tmoran@acm.org Newsgroups: comp.lang.ada Subject: Re: Generic formal access types References: <3eb01630@epflnews.epfl.ch> X-Newsreader: Tom's custom newsreader Message-ID: <5Ejsa.170717$gK.261651@rwcrnsc52.ops.asp.att.net> NNTP-Posting-Host: 12.234.13.56 X-Complaints-To: abuse@attbi.com X-Trace: rwcrnsc52.ops.asp.att.net 1051838081 12.234.13.56 (Fri, 02 May 2003 01:14:41 GMT) NNTP-Posting-Date: Fri, 02 May 2003 01:14:41 GMT Organization: AT&T Broadband Date: Fri, 02 May 2003 01:14:41 GMT Xref: archiver1.google.com comp.lang.ada:36826 Date: 2003-05-02T01:14:41+00:00 List-Id: > Ok, it is not very useful to have an access type if you do not know its > content, but the package implements a list and I am just storing them. I > "need" that because I want to return the value "null" from a function in > the generic package that returns "Access_Type". What's wrong with generic type Element is (<>); package Lists is type Node_Content_Ptr is access Element;