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=BAYES_00, FREEMAIL_FORGED_FROMDOMAIN,FREEMAIL_FROM,HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,PDS_TONAME_EQ_TOLOCAL_SHORT autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,4da4573d129f824a X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2004-01-09 09:35:45 PST Path: archiver1.google.com!news2.google.com!news.maxwell.syr.edu!newsfeed.icl.net!newsfeed.fjserv.net!oleane.net!oleane!frmug.org!freenix!enst.fr!melchior!cuivre.fr.eu.org!melchior.frmug.org!not-for-mail From: Duncan Sands Newsgroups: comp.lang.ada Subject: Re: style Q: type .. is new String; Date: Fri, 9 Jan 2004 18:34:13 +0100 Organization: Cuivre, Argent, Or Message-ID: References: <468D78E4EE5C6A4093A4C00F29DF513D04B82B19@VS2.hdi.tvcabo> NNTP-Posting-Host: lovelace.ada-france.org Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Trace: melchior.cuivre.fr.eu.org 1073669666 8013 80.67.180.195 (9 Jan 2004 17:34:26 GMT) X-Complaints-To: usenet@melchior.cuivre.fr.eu.org NNTP-Posting-Date: Fri, 9 Jan 2004 17:34:26 +0000 (UTC) To: "amado.alves" , Return-Path: User-Agent: KMail/1.5.4 In-Reply-To: <468D78E4EE5C6A4093A4C00F29DF513D04B82B19@VS2.hdi.tvcabo> Content-Disposition: inline X-Virus-Scanned: by amavisd-new-20030616-p5 (Debian) at ada-france.org X-BeenThere: comp.lang.ada@ada-france.org X-Mailman-Version: 2.1.3 Precedence: list List-Id: Gateway to the comp.lang.ada Usenet newsgroup List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Xref: archiver1.google.com comp.lang.ada:4262 Date: 2004-01-09T18:34:13+01:00 > Me too. And I also use Unbounded_String a lot because it has the wonderful > feature of memory magic (no memory associated with a US object is lost upon > assignment or scope exit). (Shameless publicity: I'll expound this memory > magic approach to container design in Ada-Europe 2004 in the half day > tutorial "No Pointers, Great Programs". See you there ;-) What about performance? I've always been worried about the time lost allocating/deallocating memory all over the place. Thanks, Duncan.