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,81bb2ce65a3240c3 X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Received: by 10.68.228.227 with SMTP id sl3mr1747136pbc.5.1340969343694; Fri, 29 Jun 2012 04:29:03 -0700 (PDT) Path: l9ni33089pbj.0!nntp.google.com!news1.google.com!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail From: joachim.schroeer@cassidian.com Newsgroups: comp.lang.ada Subject: Re: What would you like in Ada202X? Date: Fri, 29 Jun 2012 04:29:03 -0700 (PDT) Organization: http://groups.google.com Message-ID: <99d27165-f1da-4d0b-a121-fd8dbf637635@googlegroups.com> References: <3637793.35.1335340026327.JavaMail.geo-discussion-forums@ynfi5> NNTP-Posting-Host: 80.156.46.210 Mime-Version: 1.0 X-Trace: posting.google.com 1340969343 4007 127.0.0.1 (29 Jun 2012 11:29:03 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Fri, 29 Jun 2012 11:29:03 +0000 (UTC) In-Reply-To: <3637793.35.1335340026327.JavaMail.geo-discussion-forums@ynfi5> Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=80.156.46.210; posting-account=YZr43QoAAAAgLjKenRFs4EuM4vnI_Tqe User-Agent: G2/1.0 Content-Type: text/plain; charset=ISO-8859-1 Date: 2012-06-29T04:29:03-07:00 List-Id: Am Mittwoch, 25. April 2012 09:47:06 UTC+2 schrieb Martin: > Ok, we don't officially have Ada2012 yet but as no new features are going to be added to it, now seems like a good time to start thinking about the next revision. > > My starters for 10 are: > > 1) 1st class functions / lambdas > 2) parallel loops / functions > 3) Multiple dispatch > > -- Martin 1. Want to see parameter modes in calls. procedure Proc (An_In_Parameter : in Integer; An_Out_Parameter : out Integer; An_Inout_Parameter : in out Integer; An_Access_Parameter : access Integer); Proc (An_In_Parameter <= A, An_Out_Parameter => B, An_Inout_Parameter <=> C, An_Access_Parameter -> D'Access); A becomes An_In_Parameter, An_Out_Parameter becomes B, etc. 2. Expressions with Discriminants. type Symmetric_Matrix (Dim : Natural) is record Values : Float_Array (1 .. Dim * (Dim + 1) / 2; end record; Best regards Achim