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=-0.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM, FREEMAIL_REPLY autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,f51e93dacd9c7fca X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-06-18 15:36:32 PST From: Vinzent Hoefler Newsgroups: comp.lang.ada Subject: Re: status of Ada STL? Date: Wed, 19 Jun 2002 00:36:21 +0200 Organization: JeLlyFish software References: <3D0D18D5.2020601@telepath.com> <4519e058.0206170611.260a3951@posting.google.com> X-Newsreader: Forte Agent 1.8/32.548 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit NNTP-Posting-Host: 62.202.192.252 Message-ID: <3d0fb5e9$1_3@news.bluewin.ch> X-Trace: news.bluewin.ch 1024439785 62.202.192.252 (19 Jun 2002 00:36:25 +0200) X-Complaints-To: abuse@bluewin.ch Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!newsfeed.vmunix.org!newsfeed.hanau.net!news-fra1.dfn.de!news-stu1.dfn.de!news.belwue.de!news.tesion.net!newsfeed-zh.ip-plus.net!news.ip-plus.net!news.bluewin.ch!not-for-mail Xref: archiver1.google.com comp.lang.ada:26315 Date: 2002-06-19T00:36:21+02:00 List-Id: 18k11tm001@sneakemail.com (Russ) wrote: >don't say that because it "looks like C". I say that because it is a >minimal form (the x need not be repeated, which can be noticibly >simpler in a case like, > >my_very_descriptive_variable += 1 > >Or do you prefer > >my_very_descriptive_variable := my_very_descriptive_variable + 1; What about polish notation? |(my_very_descriptive_variable, 1) + Still looks more logical to me. It would be easy to make it read |Add (my_very_descriptive_variable, 1); in Ada then. :-) And BTW: shouldn't |"+"(my_very_descriptive_variable, 1) work already? Vinzent.