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=3.8 required=5.0 tests=BAYES_00,INVALID_MSGID, RATWARE_MS_HASH,RATWARE_OUTLOOK_NONAME autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,3d6ef988ec3a5ef7 X-Google-Attributes: gid103376,public From: "Terry J. Westley" Subject: Re: renaming Interfaces.Java.Ada_To_Java_String to the + operator Date: 1998/01/13 Message-ID: <01bd1fc9$99302a00$24326489@Westley-PC.calspan.com>#1/1 X-Deja-AN: 315877950 Content-Transfer-Encoding: 7bit References: <01bd1e34$1632c2c0$24326489@Westley-PC.calspan.com> <01bd1ebc$3bb2cb20$20f382c1@xhv46.dial.pipex.com> Content-Type: text/plain; charset=ISO-8859-1 Organization: Calspan SRL Mime-Version: 1.0 Newsgroups: comp.lang.ada Date: 1998-01-13T00:00:00+00:00 List-Id: Brian Rogoff wrote in article > Well, when I was doing a lot of numerical linear algebra and signal > processing work, I really wished that I could invent my own unary and > infix operators rather than being forced to use function call syntax > for everything. While I'm sure that someone could use that to write really > ugly code, there are situations where that notation (obscure to an > outsider) could have made code much nicer. This is precisely the sort of thing: A = B + C which made FORTRAN so popular. The programmer couldn't invent his/her own operators of course, but it was a big improvement over: LD B ADD C STO A for readability. In the same way, use of the + operator can make a program more readable, not less.