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,caabf5265fad78e5 X-Google-Attributes: gida07f3367d7,public,usenet X-Google-NewGroupId: yes X-Google-Language: ENGLISH,UTF8 Path: g2news2.google.com!news2.google.com!news.glorb.com!aioe.org!nospam From: "John B. Matthews" Newsgroups: comp.lang.ada Subject: Re: unsigned type Date: Sun, 28 Jun 2009 19:15:08 -0400 Organization: The Wasteland Message-ID: References: <59O1m.404661$4m1.69194@bgtnsc05-news.ops.worldnet.att.net> <1eS1m.2153$j84.1865@nlpi061.nbdc.sbc.com> NNTP-Posting-Host: ib4TTflHUauJidfWP/+Rjw.user.aioe.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Complaints-To: abuse@aioe.org X-Notice: Filtered by postfilter v. 0.7.9 Cancel-Lock: sha1:5bHctsSD6dUJShLH5itueKy8Ke4= User-Agent: MT-NewsWatcher/3.5.3b3 (Intel Mac OS X) Xref: g2news2.google.com comp.lang.ada:6691 Date: 2009-06-28T19:15:08-04:00 List-Id: In article <1eS1m.2153$j84.1865@nlpi061.nbdc.sbc.com>, Gary Scott wrote: > tmoran@acm.org wrote: [...] > > Ada's equivalent is Natural. > > Sorry for the naive question. I'm curious as to the reason for the > term "natural". "Unnatural" would seem more descriptive :) Well, there's this: The package Standard says, in part: type Integer is range implementation-defined;    subtype Natural  is Integer range 0 .. Integer'Last;     subtype Positive is Integer range 1 .. Integer'Last; Sadly, I've had to look it up more than once. :-) -- John B. Matthews trashgod at gmail dot com