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=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,71c743c03ed191fe X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-09-20 09:07:54 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news.tele.dk!small.news.tele.dk!129.240.148.23!uio.no!ntnu.no!not-for-mail From: Preben Randhol Newsgroups: comp.lang.ada Subject: Re: Beginer problem: variable array size Date: Fri, 20 Sep 2002 16:07:54 +0000 (UTC) Organization: Norwegian university of science and technology Message-ID: References: <38993b18.0209191906.b56b982@posting.google.com> NNTP-Posting-Host: kiuk0152.chembio.ntnu.no X-Trace: tyfon.itea.ntnu.no 1032538074 27924 129.241.83.78 (20 Sep 2002 16:07:54 GMT) X-Complaints-To: usenet@itea.ntnu.no NNTP-Posting-Date: Fri, 20 Sep 2002 16:07:54 +0000 (UTC) User-Agent: slrn/0.9.7.4 (Linux) Xref: archiver1.google.com comp.lang.ada:29226 Date: 2002-09-20T16:07:54+00:00 List-Id: On Fri, 20 Sep 2002 16:00:52 GMT, Pat Rogers wrote: > > Where does the function "&"( Left : Integer; Right : List_Type ) > return List_Type come from? ARM95: 4.5.3 states: [...] 3. The concatenation operators & are predefined for every nonlimited, one-dimensional array type T with component type C. They have the following specifications: 4. function "&"(Left : T; Right : T) return T function "&"(Left : T; Right : C) return T function "&"(Left : C; Right : T) return T function "&"(Left : C; Right : C) return T Preben