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,3f2295ac59ed2cc0 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-11-30 09:53:41 PST Newsgroups: comp.lang.ada Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!headwall.stanford.edu!hub1.nntpserver.com!news.maxwell.syr.edu!netnews.com!xfer02.netnews.com!news-out.visi.com!hermes.visi.com!uunet!ash.uu.net!xyzzy!nntp From: Jeffrey Carter Subject: Re: List Container Straw Man (NJR V5R1) X-Nntp-Posting-Host: e246420.msc.az.boeing.com Content-Type: text/plain; charset=us-ascii Message-ID: <3C07BCEB.86878310@boeing.com> Sender: nntp@news.boeing.com (Boeing NNTP News Access) Content-Transfer-Encoding: 7bit Organization: The Boeing Company X-Accept-Language: en References: <9u6ahm$6gdc1$1@ID-25716.news.dfncis.de> Mime-Version: 1.0 Date: Fri, 30 Nov 2001 17:07:55 GMT X-Mailer: Mozilla 4.73 [en]C-CCK-MCD Boeing Kit (WinNT; U) Xref: archiver1.google.com comp.lang.ada:17232 Date: 2001-11-30T17:07:55+00:00 List-Id: Note that my comments on 7 "[list elements must not be private] List elements must be limited private." are misleading, since they were made on the modified version "List elements must not be limited private" As to mimicking Ada.Strings.*, abstract strings are a special case of unbounded arrays, not of lists, as they don't provide O(1) insertion and deletion. In order to be general, operations taking an array of elements would have to be generic, so that the client may specify the array type. These are easy enough for the client to implement with the basic operations, so I doubt if they're worth the trouble of providing. -- Jeffrey Carter