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-10 11:54:30 PST Path: archiver1.google.com!news1.google.com!sn-xit-02!sn-post-02!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: Fri, 10 May 2002 13:54:28 -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:23862 Date: 2002-05-10T13:54:28-05:00 List-Id: Marin David Condic wrote in message ... >Of course, arguably, if a given implementation is only supporting 16 bit >integers, it is likely to be for a machine (like the 1750a) that may not >easily handle larger sizes and may not have the large memory needed to >support lists that would exceed the 32767 elements it could count anyway. >Its likely that you'd be working with a machine that had other practical >limits (like strings that can't get larger than 32767 characters because >they're indexed by Integers as well?) so would you really care? Its just >another implementation limit you have to work with - or modify the source >since you have it readily available. The implementation in question supports 32-bit integers on all targets, but "Integer" is 16-bits ("Long_Integer" is 32-bits). On some targets, 32-bit operations are more expensive; on 32-bit targets like the Pentium, that's not even true, but "Integer" is 16-bits for interoperability with the older targets. Don't use Integer if you (may) need a range beyond 32767. (Which, BTW, is a significant complaint of mine about the design of the standard string libraries, but enough of that...) Randy.