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,dfc164e526616c68 X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news2.google.com!news3.google.com!border1.nntp.dca.giganews.com!nntp.giganews.com!newsfeed00.sul.t-online.de!t-online.de!130.59.10.21.MISMATCH!kanaga.switch.ch!switch.ch!news.belwue.de!newsfeed.arcor.de!news.arcor.de!not-for-mail Date: Mon, 20 Mar 2006 21:20:03 +0100 From: Georg Bauhaus Organization: future apps GmbH User-Agent: Debian Thunderbird 1.0.2 (X11/20051002) X-Accept-Language: en-us, en MIME-Version: 1.0 Newsgroups: comp.lang.ada Subject: Re: How to extract range from array References: <1142608344.661977.123860@i39g2000cwa.googlegroups.com> <2901131.Fq1M6N3cKt@linux1.krischik.com> In-Reply-To: <2901131.Fq1M6N3cKt@linux1.krischik.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Message-ID: <441f0e72$0$7752$9b4e6d93@newsread4.arcor-online.net> NNTP-Posting-Date: 20 Mar 2006 21:20:02 MET NNTP-Posting-Host: 5e36846e.newsread4.arcor-online.net X-Trace: DXC=jTh]MEEL:RSghFd\k@b23T:ejgIfPPldTjW\KbG]kaMXeDdmR4DE3R\9XBT3E@M0OYljUVjRQ60?RVmnOeiOY3@^g[50F7T5IOR X-Complaints-To: usenet-abuse@arcor.de Xref: g2news1.google.com comp.lang.ada:3500 Date: 2006-03-20T21:20:02+01:00 List-Id: Martin Krischik wrote: > type Long_Long_String is array (Long_Long_Positive range <>) of Character; > pragma Pack (Long_Long_String); > > And then order additional memory for your computer to store > Long_Long_String's in ;-) with Google; package Big_Ones is type Huge is range 1 .. 10**66; type Long_Long_String is array(Huge range <>) of Character; type Text is access Long_Long_String; for Text'Storage_Pool use Google.Net; end Big_Ones; Given a suitable compiler for distributed sytems... ;) Georg