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: a07f3367d7,c689b55786a9f2bd X-Google-Attributes: gida07f3367d7,public,usenet X-Google-NewGroupId: yes X-Google-Language: ENGLISH,ASCII Path: g2news2.google.com!news2.google.com!news.glorb.com!news.mv.net!nntp.TheWorld.com!not-for-mail From: Robert A Duff Newsgroups: comp.lang.ada Subject: Re: for S'Image use Func?? Date: Thu, 06 May 2010 17:11:34 -0400 Organization: The World Public Access UNIX, Brookline, MA Message-ID: References: NNTP-Posting-Host: shell01.theworld.com Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Trace: pcls6.std.com 1273180280 21241 192.74.137.71 (6 May 2010 21:11:20 GMT) X-Complaints-To: abuse@TheWorld.com NNTP-Posting-Date: Thu, 6 May 2010 21:11:20 +0000 (UTC) User-Agent: Gnus/5.1008 (Gnus v5.10.8) Emacs/21.3 (irix) Cancel-Lock: sha1:PNcf5L7+2931jlXafW+yyBJ4D4g= Xref: g2news2.google.com comp.lang.ada:11342 Date: 2010-05-06T17:11:34-04:00 List-Id: "Yannick Duch�ne (Hibou57)" writes: > What there were thinking about ? Perhaps proper display when different > numbers are displayed on a column and some are Integer, others > Natural. But for "columns" you want something like: 1 -3 123 -123 But 'Image gives you: 1 -3 123 -123 I don't get it. 'Image isn't particularly helpful in producing columnar output. >... By the way, Natural is a subset of Integer, so these are > numbers which are always positive, not numbers without a sign. Sure, but the vast majority of integers I want to do 'Image on are nonnegative. For example, if you print the length of a String, there is zero chance that it's negative, so leaving an extra blank in case it might be negative makes no sense. - Bob