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: 103376,1dd28d5040ded1f8 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-05-09 12:54:11 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!sn-xit-01!sn-post-01!supernews.com!corp.supernews.com!not-for-mail From: "Randy Brukardt" Newsgroups: comp.lang.ada Subject: Re: Announce: Grace project site operational Date: Thu, 9 May 2002 14:54:21 -0500 Organization: Posted via Supernews, http://www.supernews.com Message-ID: References: <3CD88FBD.4070706@telepath.com> <3CD91E31.1060004@telepath.com> X-Newsreader: Microsoft Outlook Express 4.72.3612.1700 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3719.2500 X-Complaints-To: newsabuse@supernews.com Xref: archiver1.google.com comp.lang.ada:23798 Date: 2002-05-09T14:54:21-05:00 List-Id: Marin David Condic wrote in message ... >You know the number should never be negative and Natural'Last is probably big >enough for any collection of stuff in memory. Not necessarily. I know at least one Ada compiler that has type Integer as 16-bits on all targets (so all targets have the same memory layout). If you care about the range, always use a user-defined type. Certainly in this case, you'll need a type with a longer range than 32767. Randy.