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.3 required=5.0 tests=BAYES_00,FREEMAIL_FROM, REPLYTO_WITHOUT_TO_CC autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,997e6472f58cc955 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-06-05 10:41:17 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!logbridge.uoregon.edu!arclight.uoregon.edu!wn13feed!worldnet.att.net!216.166.71.14!border3.nntp.aus1.giganews.com!nntp.giganews.com!nntp3.aus1.giganews.com!nntp.gbronline.com!news.gbronline.com.POSTED!not-for-mail NNTP-Posting-Date: Thu, 05 Jun 2003 12:44:57 -0500 Date: Thu, 05 Jun 2003 12:41:44 -0500 From: Wesley Groleau Reply-To: wesgroleau@despammed.com Organization: Ain't no organization here! User-Agent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.3.1) Gecko/20030425 X-Accept-Language: en-us, en, es-mx, pt-br, fr-ca MIME-Version: 1.0 Newsgroups: comp.lang.ada Subject: Re: Case dependence and coding standards References: <035odv8mfiksmqo69q0250qp141oebtdro@4ax.com> In-Reply-To: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Message-ID: <46-dncr185gHHEKjXTWcqg@gbronline.com> NNTP-Posting-Host: 216.117.18.27 X-Trace: sv3-qIN7sMkrXkbYJxm0p0hXyHKXKebb19197lW3+CEY2jk5LlhhwJsYbGVOsP0w4zcjD9fIaBxVISqvsDr!lJO9lDOgnxuCLugKr4lr7q84GyQZLO2XnWn0Dr1JiXjULR/Itz3aXuUey4mSjDeIOqWq4rQhDnKu!6usq X-Complaints-To: abuse@gbronline.com X-DMCA-Complaints-To: abuse@gbronline.com 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.1 Xref: archiver1.google.com comp.lang.ada:38711 Date: 2003-06-05T12:41:44-05:00 List-Id: >>This could be formatted to look nicely ordered like >> >> north : Positive range 0 .. 90; -- stops at north pole >> west : Positive range 0 .. 360; -- around the earth >> depth : Integer range -20_000 .. 0; -- below the sea > > I would have done: > > north : Positive range 0 .. 90; -- stops at north pole > west : Positive range 0 .. 360; -- around the earth > depth : Integer range -20_000 .. 0; -- below the sea > And I would have done: north : Positive range 0 .. 90; -- stops at north pole west : Positive range 0 .. 360; -- around the earth depth : Integer range -20_000 .. 0; -- below the sea But now we're getting a little bit picky. There was a valid point that "searching" and "reading" take different skills. Indeed, it has been empirically shown that searching is easier with ALL UPPER CASE while reading is easier with mixed case. But declarations are far more often used for searching than reading. Even for reading, more often, tables are easier, I think. (I don't have empirical studies, though.) The layout reduces the mental energy in identifying the parts of the lookup.