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,565ee1c43df7874f X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-09-10 08:28:53 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!canoe.uoregon.edu!logbridge.uoregon.edu!nntp-server.caltech.edu!attla2!ip.att.net!attbi_feed3!attbi.com!sccrnsc01.POSTED!not-for-mail Message-ID: <3D7E0EB1.2070708@attbi.com> From: Mark Biggar User-Agent: Mozilla/5.0 (Windows; U; Win 9x 4.90; en-US; rv:1.0.0) Gecko/20020530 X-Accept-Language: en-us, en MIME-Version: 1.0 Newsgroups: comp.lang.ada Subject: Re: array of operations References: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit NNTP-Posting-Host: 12.235.91.30 X-Complaints-To: abuse@attbi.com X-Trace: sccrnsc01 1031671694 12.235.91.30 (Tue, 10 Sep 2002 15:28:14 GMT) NNTP-Posting-Date: Tue, 10 Sep 2002 15:28:14 GMT Organization: AT&T Broadband Date: Tue, 10 Sep 2002 15:28:14 GMT Xref: archiver1.google.com comp.lang.ada:28803 Date: 2002-09-10T15:28:14+00:00 List-Id: marco wrote: > Do you know if there is some way of bulding up arrays of functions and/or > procedures?... Sure, Ada allows for access types to functions and procedures so you construct an array of those. But there are some things to consider. If your array is static, then a case statement is probably a better solution. -- -- Mark Biggar mark.a.biggar@attbi.com