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: a07f3367d7,57f8540942f8e060 X-Google-Attributes: gida07f3367d7,public,usenet X-Google-NewGroupId: yes X-Google-Language: ENGLISH,ASCII Path: g2news1.google.com!news1.google.com!npeer01.iad.highwinds-media.com!news.highwinds-media.com!feed-me.highwinds-media.com!nx02.iad01.newshosting.com!newshosting.com!198.186.194.250.MISMATCH!news-xxxfer.readnews.com!news-out.readnews.com!transit4.readnews.com!panix!bloom-beacon.mit.edu!micro-heart-of-gold.mit.edu!newsswitch.lcs.mit.edu!nntp.TheWorld.com!not-for-mail From: Robert A Duff Newsgroups: comp.lang.ada Subject: Re: Initialization and Finalization of limited object "returned" by a function Date: Sat, 13 Feb 2010 10:59:44 -0500 Organization: The World Public Access UNIX, Brookline, MA Message-ID: References: <41b794ec-26b0-485e-a959-580a5b877a3b@f15g2000yqe.googlegroups.com> <8e09c20d-172e-42a2-b2ff-994863893523@h12g2000yql.googlegroups.com> <9c2b5c56-7abf-4523-844d-b48447587402@w27g2000pre.googlegroups.com> NNTP-Posting-Host: shell01.theworld.com Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Trace: pcls4.std.com 1266076771 27453 192.74.137.71 (13 Feb 2010 15:59:31 GMT) X-Complaints-To: abuse@TheWorld.com NNTP-Posting-Date: Sat, 13 Feb 2010 15:59:31 +0000 (UTC) User-Agent: Gnus/5.1008 (Gnus v5.10.8) Emacs/21.3 (irix) Cancel-Lock: sha1:xS3fXOeJhMPs24fLJP5aHttAd8I= Xref: g2news1.google.com comp.lang.ada:9200 Date: 2010-02-13T10:59:44-05:00 List-Id: "Hibou57 (Yannick Duch�ne)" writes: > What's the new Professor Sir Tucker Taft's project ? The ARG is inventing some syntactic sugar to make user-defined container code easier to read, and Tucker is doing most of the work on that. One example is that there will probably be some mechanism to say: A(X) := A(X) + 1; where A is (say) a hash table mapping strings to integers, and X is a string. User-defined array-indexing notation. Also, some new kinds of for loops. For example, looping through the components of an array without any horsing around with index values: for C : Character of My_String loop Do_Something(C); end loop; The ": Character" above is optional, according to the latest proposal. - Bob