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-Thread: 103376,2e2db8edf2656165 X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news3.google.com!border1.nntp.dca.giganews.com!nntp.giganews.com!local01.nntp.dca.giganews.com!nntp.comcast.com!news.comcast.com.POSTED!not-for-mail NNTP-Posting-Date: Fri, 23 Sep 2005 02:18:21 -0500 From: tmoran@acm.org Newsgroups: comp.lang.ada Subject: Re: Constructing an object References: X-Newsreader: Tom's custom newsreader Message-ID: Date: Fri, 23 Sep 2005 02:18:22 -0500 NNTP-Posting-Host: 24.6.102.223 X-Trace: sv3-QBlUsOhxhoeWl9Tr7mryH87gO/hCBglLPe76W++PQjbZDI3LUmIBdDJ01wAgr4Le9Swk6NyKghVC7BK!OBKwS3uNVcK2WFTeUFBDFA8d3wdJWKHfo4ppImrMn600s3q5rlTLCs6MA0UaKD6BUfOJT4seFrMD X-Complaints-To: abuse@comcast.net X-DMCA-Complaints-To: dmca@comcast.net X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly X-Postfilter: 1.3.32 Xref: g2news1.google.com comp.lang.ada:5053 Date: 2005-09-23T02:18:22-05:00 List-Id: >> (I'm aware of the controlled types, but I need to provide parameters for >> construction, which the special Initialize procedure does not have.) Access discriminants let you pass just about anything to the initialize procedure. I personally like a Cursor type taking an access discriminant on the object it's supposed to traverse. That not only lets the Cursor's Initialize get needed information, it also enforces a lifetime for the cursor that's within the lifetime of the traversed object.