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,fccea7ca608399cd X-Google-Attributes: gid103376,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news2.google.com!news1.google.com!newsfeed2.dallas1.level3.net!news.level3.com!newsfeed-00.mathworks.com!nntp.TheWorld.com!not-for-mail From: Robert A Duff Newsgroups: comp.lang.ada Subject: Re: Vector of Vectors. Date: Sat, 17 Jan 2009 17:59:48 -0500 Organization: The World Public Access UNIX, Brookline, MA Message-ID: References: <496e8418$0$25733$4d3efbfe@news.sover.net> <6t8gc1F9ej88U1@mid.individual.net> <497229d8$0$31340$9b4e6d93@newsspool4.arcor-online.net> NNTP-Posting-Host: shell01.theworld.com Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: pcls6.std.com 1232233188 26074 192.74.137.71 (17 Jan 2009 22:59:48 GMT) X-Complaints-To: abuse@TheWorld.com NNTP-Posting-Date: Sat, 17 Jan 2009 22:59:48 +0000 (UTC) User-Agent: Gnus/5.1008 (Gnus v5.10.8) Emacs/21.3 (irix) Cancel-Lock: sha1:mZtTqwm4oNEMQbTh211asPgIB5I= Xref: g2news2.google.com comp.lang.ada:4391 Date: 2009-01-17T17:59:48-05:00 List-Id: Georg Bauhaus writes: > Robert A Duff wrote: > >> Requiring the body of a loop to have a name is an annoyance. >> What are you going to call it? The_Loop_Body. Or something >> equally meaningless. > > Is the loop body meaningless, too? If not, there is a name :-) The loop body is usually self explanatory. E.g: for Index in S'Range loop S(Index) := To_Upper_Case(S(Index)); end loop; Do you want me to call it "Convert_Current_Character_To_Upper_Case", and wrap it in a procedure by that name? - Bob