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, MSGID_RANDY autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,f68f726841b97b19 X-Google-Attributes: gid103376,public From: Robert Dewar Subject: Re: Get a pointer to an array Date: 1999/06/06 Message-ID: <7jcist$jbs$1@nnrp1.deja.com>#1/1 X-Deja-AN: 486165260 References: <37599022.C77585D@barak-online.net> X-Http-Proxy: 1.0 x42.deja.com:80 (Squid/1.1.22) for client 205.232.38.14 Organization: Deja.com - Share what you know. Learn what you don't. X-Article-Creation-Date: Sun Jun 06 01:29:08 1999 GMT Newsgroups: comp.lang.ada X-Http-User-Agent: Mozilla/4.04 [en] (OS/2; I) Date: 1999-06-06T00:00:00+00:00 List-Id: In article <37599022.C77585D@barak-online.net>, Elad Rosenheim wrote: > This question may seem easy, but I haven't been able to find > a solution: > > How do I create a normal array, then point an access type to > it? First answer, Don't! Aliasing of this kind is almost always dubious and inadvisable. Second answer, if you must do it for a good reason (there are not very many good reasons for doing this), then declare the array aliased, and use 'Access. Sent via Deja.com http://www.deja.com/ Share what you know. Learn what you don't.