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,b5cd7bf26d091c6f X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news1.google.com!news.glorb.com!feeder.erje.net!nuzba.szn.dk!news.jacob-sparre.dk!pnx.dk!jacob-sparre.dk!ada-dk.org!.POSTED!not-for-mail From: "Randy Brukardt" Newsgroups: comp.lang.ada Subject: Re: Reading the while standard input into a String Date: Mon, 6 Jun 2011 22:19:04 -0500 Organization: Jacob Sparre Andersen Research & Innovation Message-ID: References: <4decb6f4$0$6627$9b4e6d93@newsspool2.arcor-online.net> <4decd6ef$0$6581$9b4e6d93@newsspool3.arcor-online.net> <1qweahw1opg3q$.qlezbqnr1n6w.dlg@40tude.net> NNTP-Posting-Host: static-69-95-181-76.mad.choiceone.net X-Trace: munin.nbi.dk 1307416748 1829 69.95.181.76 (7 Jun 2011 03:19:08 GMT) X-Complaints-To: news@jacob-sparre.dk NNTP-Posting-Date: Tue, 7 Jun 2011 03:19:08 +0000 (UTC) X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2900.5931 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.6090 X-RFC2646: Format=Flowed; Original Xref: g2news1.google.com comp.lang.ada:19666 Date: 2011-06-06T22:19:04-05:00 List-Id: "Dmitry A. Kazakov" wrote in message news:1qweahw1opg3q$.qlezbqnr1n6w.dlg@40tude.net... ... > BTW, GtkAda binding consistently uses Address instead of storage elements > array. So it was not an idea of mine. (:-)) Good. That's an Ada83ism, any Ada 95 code that uses 'Address (other than address clauses for hardware) is broken in my view. It is much better to use some version of 'Access and not lose type checking. And in this case, use the stream operations, not bastard non-portable junk. Randy.