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.6 required=5.0 tests=BAYES_20,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,c7fc5da0a4cc955c,start X-Google-Attributes: gid103376,public From: therionics@computer.org (Technobabble) Subject: unconstrainded array question Date: 1998/09/19 Message-ID: #1/1 X-Deja-AN: 392606729 Organization: Ada95Team NNTP-Posting-Date: Fri, 18 Sep 1998 18:59:45 MDT Newsgroups: comp.lang.ada Date: 1998-09-19T00:00:00+00:00 List-Id: Greetings, anyone know if it is legal or not in Ada95 to use a RANGE attribute on an unconstrained array, as in the example: package My_Package is procedure XYZ (This : in Object); type UC_Array is array (integer <>) of integer; xyz : AC_Array (1..100); end My_Package; then in the body .... procedure XYZ (This : Object) is begin for I in This.xyz'RANGE loop ...... end XYZ; Thanks, Richmond