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,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII X-Google-Thread: 103376,dcbd7ca060d79dba,start X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-06-05 12:00:42 PST Path: archiver1.google.com!postnews1.google.com!not-for-mail From: DreySf@gmx.net (Drey) Newsgroups: comp.lang.ada Subject: Code Search :-) Date: 5 Jun 2003 12:00:41 -0700 Organization: http://groups.google.com/ Message-ID: NNTP-Posting-Host: 129.69.165.66 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Trace: posting.google.com 1054839641 3156 127.0.0.1 (5 Jun 2003 19:00:41 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: 5 Jun 2003 19:00:41 GMT Xref: archiver1.google.com comp.lang.ada:38727 Date: 2003-06-05T19:00:41+00:00 List-Id: Hi ! I have a small problem... or i think i�m too lazy or i ask my self why i schould code something, that already has been coded :-) I search for a package that is able make methods on a type alike an array. What i want from this type "Field" that ist works like an array (the dimensions of course are variable) but with one feature: I want to be able to change the borders of dimensions (Increase,Decrease). I hope i say it understandably. :-) Example: I have a Field that is limited Var : Fieldtype( 1..3 , 1..6 , 1..8 ) of Elementtype and after the Icrease(Dimension => 1, Border => 1) operation on the "Var" look like this: (It have the same Values of elementtype as before) Var : Fieldtype( _1..4_ , 1..6 , 1..8 ) of Elementtype I tried to make it with Lists (access types), and i will further try to improve my code, but i hope that there is anybody who can help me :-) Thank You Greeeeeez Andre