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.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,d342f2360cfae987,start X-Google-Attributes: gid103376,public From: dale@cs.rmit.edu.au (Dale Stanbrough) Subject: what is happening here? (access types & discriminants...) Date: 2000/03/19 Message-ID: #1/1 X-Deja-AN: 599475033 X-Trace: 19 Mar 2000 21:30:53 GMT, r1021c-02.ppp.cs.rmit.edu.au Organization: RMIT Newsgroups: comp.lang.ada Date: 2000-03-19T00:00:00+00:00 List-Id: I've got the equivalent of the following code... with ada.strings.unbounded; use ada.strings.unbounded; package ua is type Unbounded_Array is array (Positive range <>) of Unbounded_String; type Unbounded_Array_Ptr is access Unbounded_Array; i_dont_understand : unbounded_Array_ptr (1..100); end ua; Not quite sure what the definition of i_dont_understand is doing... Thanks, Dale