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=-0.9 required=5.0 tests=BAYES_00,FORGED_GMAIL_RCVD, FREEMAIL_FROM autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: 103376,35edde140291c79e X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Received: by 10.205.131.16 with SMTP id ho16mr719374bkc.3.1335437930940; Thu, 26 Apr 2012 03:58:50 -0700 (PDT) Path: h15ni167502bkw.0!nntp.google.com!news2.google.com!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail From: ytomino Newsgroups: comp.lang.ada Subject: Re: Can Ada iterate over Nd array? Date: Thu, 26 Apr 2012 03:57:29 -0700 (PDT) Organization: http://groups.google.com Message-ID: <29065738.166.1335437849854.JavaMail.geo-discussion-forums@pbgg7> References: NNTP-Posting-Host: 114.150.55.69 Mime-Version: 1.0 X-Trace: posting.google.com 1335437930 18018 127.0.0.1 (26 Apr 2012 10:58:50 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Thu, 26 Apr 2012 10:58:50 +0000 (UTC) In-Reply-To: Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=114.150.55.69; posting-account=Mi71UQoAAACnFhXo1NVxPlurinchtkIj User-Agent: G2/1.0 Content-Type: text/plain; charset=ISO-8859-1 Date: 2012-04-26T03:57:29-07:00 List-Id: declare Liner_A : array(1..A'Size / A'Component_Size) of the element type of A; for Liner_A'Address use A'Address; begin for I in Liner_A'Range loop null; end loop; end;