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-Thread: 103376,fe1400b7c31a72ce X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!postnews.google.com!v46g2000cwv.googlegroups.com!not-for-mail From: "jimmaureenrogers@worldnet.att.net" Newsgroups: comp.lang.ada Subject: Re: pointer to intrinsic function? Date: 4 Mar 2006 16:08:04 -0800 Organization: http://groups.google.com Message-ID: <1141517284.835113.200320@v46g2000cwv.googlegroups.com> References: <1141510052.613466.30440@v46g2000cwv.googlegroups.com> NNTP-Posting-Host: 69.170.89.0 Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Trace: posting.google.com 1141517289 13936 127.0.0.1 (5 Mar 2006 00:08:09 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Sun, 5 Mar 2006 00:08:09 +0000 (UTC) In-Reply-To: <1141510052.613466.30440@v46g2000cwv.googlegroups.com> User-Agent: G2/0.2 X-HTTP-UserAgent: Mozilla/5.0 (Windows; U; Windows NT 5.1; rv:1.7.3) Gecko/20040913 Firefox/0.10,gzip(gfe),gzip(gfe) Complaints-To: groups-abuse@google.com Injection-Info: v46g2000cwv.googlegroups.com; posting-host=69.170.89.0; posting-account=SqOfxAwAAAAkL81YAPGH1JdBwpUXw9ZG Xref: g2news1.google.com comp.lang.ada:3268 Date: 2006-03-04T16:08:04-08:00 List-Id: bantchev@math.bas.bg wrote: > Hello all! > > Can I get a pointer to an intrinsic function, such as > function "+"(left,right: in float) return float ? > If yes, how? Thank you. Please explain your goals. You can pass function parameters to generic units. You can create an access to function type and assign it the value of +'access. I suspect you might not need to do either of these. Jim Rogers