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,c78631398b51f91b X-Google-Attributes: gid103376,public,usenet X-Google-Language: ENGLISH,ASCII Path: g2news1.google.com!news2.google.com!postnews.google.com!b15g2000hsa.googlegroups.com!not-for-mail From: Maxim Reznik Newsgroups: comp.lang.ada Subject: Re: prefixed view Date: Thu, 6 Dec 2007 10:32:33 -0800 (PST) Organization: http://groups.google.com Message-ID: <10e00a70-c17b-46a9-bffa-f8f984ce7550@b15g2000hsa.googlegroups.com> References: <8727544b-2f4f-4817-bb2e-20d4d104ae5d@w34g2000hsg.googlegroups.com> <475838b6$0$17528$9b4e6d93@newsspool4.arcor-online.net> NNTP-Posting-Host: 213.154.201.133 Mime-Version: 1.0 Content-Type: text/plain; charset=KOI8-R Content-Transfer-Encoding: quoted-printable X-Trace: posting.google.com 1196965953 18461 127.0.0.1 (6 Dec 2007 18:32:33 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Thu, 6 Dec 2007 18:32:33 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: b15g2000hsa.googlegroups.com; posting-host=213.154.201.133; posting-account=K1cP1QoAAAD_GR6kW2Td0NqGqGBLRE8h User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727),gzip(gfe),gzip(gfe) Xref: g2news1.google.com comp.lang.ada:18747 Date: 2007-12-06T10:32:33-08:00 List-Id: On 6 =C4=C5=CB, 20:00, Georg Bauhaus wrote: > > procedure Y (Count : Integer) renames Object.X; > > Should the result be a procedure that is always invoked with > Object, and only with Object? This will be currying, right? I think it could be like procedure Y (Count : Integer) is begin X (Object, Count); end; But the question is ARM intend such usage of prefixed view or deny it?