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=unavailable autolearn_force=no version=3.4.4 Path: border2.nntp.dca.giganews.com!nntp.giganews.com!news-in-01.newsfeed.easynews.com!easynews!core-easynews-01!easynews.com!en-nntp-01.dc1.easynews.com.POSTED!not-for-mail From: agent@drrob1.com Newsgroups: comp.lang.ada Subject: Re: array question Message-ID: References: <2migf9h07j7ll0eqk7oh3e64m1e0lv3r5r@4ax.com> User-Agent: ForteAgent/7.20.32.1218 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Complaints-To: abuse@easynews.com Organization: Forte Inc. http://www.forteinc.com/apn/ X-Complaints-Info: Please be sure to forward a copy of ALL headers otherwise we will be unable to process your complaint properly. Date: Mon, 10 Feb 2014 07:41:57 -0500 X-Received-Bytes: 1263 Xref: number.nntp.dca.giganews.com comp.lang.ada:184772 Date: 2014-02-10T07:41:57-05:00 List-Id: On Sun, 09 Feb 2014 22:39:06 -0700, Jeffrey Carter wrote: >On 02/09/2014 08:49 PM, agent@drrob1.com wrote: >> I would like to define a array that can use a character as its index. >> type FSATyp is (Delim, Op, Dgt, AllElse); >> >> FsaArray : ARRAY Character range ('' .. Character'Val(255)) OF FSATyp; > >The syntax for an array definition is given in ARM 3.6 >(http://www.adaic.org/resources/add_content/standards/12rm/html/RM-3-6.html). Thanks