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.4 required=5.0 tests=AC_FROM_MANY_DOTS,BAYES_00 autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,604e0f87aa06eab6 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-03-20 06:27:13 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!logbridge.uoregon.edu!arclight.uoregon.edu!wn13feed!worldnet.att.net!199.45.49.37!cyclone1.gnilink.net!spamkiller2.gnilink.net!nwrdny02.gnilink.net.POSTED!53ab2750!not-for-mail From: "Frank J. Lhota" Newsgroups: comp.lang.ada References: <1047665830.579605@master.nyc.kbcfp.com> <7eee7v4hpvj0i5s345uonlen5315rhiau8@4ax.com> Subject: Re: Imitation is the sincerest form of flattery X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Message-ID: <4dkea.75440$gi1.38045@nwrdny02.gnilink.net> Date: Thu, 20 Mar 2003 14:27:12 GMT NNTP-Posting-Host: 141.157.181.168 X-Complaints-To: abuse@verizon.net X-Trace: nwrdny02.gnilink.net 1048170432 141.157.181.168 (Thu, 20 Mar 2003 09:27:12 EST) NNTP-Posting-Date: Thu, 20 Mar 2003 09:27:12 EST Xref: archiver1.google.com comp.lang.ada:35563 Date: 2003-03-20T14:27:12+00:00 List-Id: "Dmitry A. Kazakov" wrote in message news:p2vi7vs64p33mpnbsfsn43cvh72l44tm95@4ax.com... > To inherit the type interface. For example, an array type implemented > by a record type: > > -- This is not Ada! > type Unbounded_String is > private array (Integer range <>) of Character; > > private > type Unbounded_String is record > ... > end record; > -- Definition of implemented abstract array opeartions follows I'm a little unclear about what you're asking for here. In your envisioned vision of Ada, what does this code do? How would it differ from doing something like this: -- This is Ada! type Unbounded_String ( First, Last : Integer ) is private; private type Unbounded_String is record ... end record;