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-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 108717,ea99940253996e3e X-Google-Attributes: gid108717,public X-Google-Thread: 103376,ea99940253996e3e X-Google-Attributes: gid103376,public X-Google-Thread: 109fba,ea99940253996e3e X-Google-Attributes: gid109fba,public X-Google-Thread: f43e6,ea99940253996e3e X-Google-Attributes: gidf43e6,public X-Google-ArrivalTime: 2003-10-10 04:52:47 PST Path: archiver1.google.com!news2.google.com!fu-berlin.de!news.tele.dk!news.tele.dk!small.news.tele.dk!lnewsoutpeer00.lnd.ops.eu.uu.net!lnewsinpeer00.lnd.ops.eu.uu.net!bnewsoutpeer00.bru.ops.eu.uu.net!bnewsinpeer01.bru.ops.eu.uu.net!bnewspost00.bru.ops.eu.uu.net!emea.uu.net!read-nat.news.nl.uu.net!not-for-mail From: "Stephen Baynes." Newsgroups: comp.software-eng,comp.programming,comp.lang.c++,comp.lang.ada References: <2cfd1a4e.0309252032.3e3c0a1a@posting.google.com> <863cefjy6l.fsf@strudel.futureapps.de> Subject: Re: ISO Studies of underscores vs MixedCase in Ada or C++ Date: Fri, 10 Oct 2003 12:52:44 +0100 X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.50.4927.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4927.1200 Message-ID: <3f869d8d$0$260$4d4ebb8e@read-nat.news.nl.uu.net> NNTP-Posting-Host: ehv02e.pixs.philips.com X-Trace: 1065786765 read-nat.news.nl.uu.net 260 193.67.187.140 X-Complaints-To: abuse@nl.uu.net Xref: archiver1.google.com comp.software-eng:101 comp.programming:699 comp.lang.c++:1860 comp.lang.ada:592 Date: 2003-10-10T12:52:44+01:00 List-Id: > takeAction(doYouMind.ifI(openTheWindow)); > > take_action (do_you_mind.if_i (open_the_window)); > > take_Action (do_You_Mind.if_I(open_The_Window)); > > Take_Action (Do_You_Mind.If_I (Open_The_Window)); Once you start looking at the readability whole expressions, you also need to look at the use of spaces. The above are not consistant about if a space is used with round brackets. [And then there is the question - is it more readable with the space outside or inside the bracket - my preference is for inside - so the opening bracket is with the function name rather than the first parameter.] Take_Action (Do_You_Mind.If_I (Open_The_Window)); Take_Action(Do_You_Mind.If_I(Open_The_Window)); Take_Action( Do_You_Mind.If_I( Open_The_Window ) ); To go back to the original question - there have been studies that showed underscores gave the most readable results - unfortunately I have lost the reference and I would also like to get my hands on it again. - Stephen Baynes CEng MBCS My views are my own "Georg Bauhaus" wrote in message news:863cefjy6l.fsf@strudel.futureapps.de...