Return-Path: Delivered-To: apmail-stdcxx-dev-archive@www.apache.org Received: (qmail 99932 invoked from network); 1 May 2008 18:45:06 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 1 May 2008 18:45:06 -0000 Received: (qmail 60109 invoked by uid 500); 1 May 2008 18:45:08 -0000 Delivered-To: apmail-stdcxx-dev-archive@stdcxx.apache.org Received: (qmail 60092 invoked by uid 500); 1 May 2008 18:45:08 -0000 Mailing-List: contact dev-help@stdcxx.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@stdcxx.apache.org Delivered-To: mailing list dev@stdcxx.apache.org Received: (qmail 60081 invoked by uid 99); 1 May 2008 18:45:08 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 May 2008 11:45:08 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of msebor@gmail.com designates 209.85.200.173 as permitted sender) Received: from [209.85.200.173] (HELO wf-out-1314.google.com) (209.85.200.173) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 May 2008 18:44:23 +0000 Received: by wf-out-1314.google.com with SMTP id 28so876496wfa.2 for ; Thu, 01 May 2008 11:44:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:organization:user-agent:mime-version:to:subject:references:in-reply-to:content-type:content-transfer-encoding:sender; bh=HdJu46ZxL4G7ZP1En2dB+SBzqrSBfEw1UAjnZtgLmss=; b=kiwneJt7ZRiZLDU4FMQ9MVGIMBjj+QywerDdSXHHuaEe3VD3Ndna7w/LM8QBGfCfGOL5sCKlLNjUMB2dRfl3QJltsrIHrzEMDEWGhoAhqYRx8jcx7Nh8wEbJ0HTE76WFfImM+Ut+4j3ffnRLC9HTwn52uqDJAOzz0KzTH41nyAs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:organization:user-agent:mime-version:to:subject:references:in-reply-to:content-type:content-transfer-encoding:sender; b=wbEoM8p963NrhPPqvBWNWfUOm+dTyMh5jGRaEr4VXNUTSpBMjnYKcEp0N2nEyRd3/wi4n4c0m5WsBX0/rKUM1KNmlpZhmmr7iNgTCC8lLOLeaF5dYSGlVSXzFLaIZb/EHrzDNsY7L+tGR4BPV2SQc7ElOVaqjwXoMLKNjHNWYnY= Received: by 10.142.177.7 with SMTP id z7mr925928wfe.0.1209667477454; Thu, 01 May 2008 11:44:37 -0700 (PDT) Received: from localhost.localdomain ( [71.229.200.170]) by mx.google.com with ESMTPS id 27sm5497736wfa.2.2008.05.01.11.44.34 (version=TLSv1/SSLv3 cipher=RC4-MD5); Thu, 01 May 2008 11:44:35 -0700 (PDT) Message-ID: <481A0F92.8030600@roguewave.com> Date: Thu, 01 May 2008 12:44:34 -0600 From: Martin Sebor Organization: Rogue Wave Software, Inc. User-Agent: Thunderbird 2.0.0.12 (X11/20080226) MIME-Version: 1.0 To: dev@stdcxx.apache.org Subject: Re: to_string() equivalent? References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Sender: Martin Sebor X-Virus-Checked: Checked by ClamAV on apache.org Eric Lemings wrote: > What is the equivalent of to_string(x) in the old test driver? I've > been looking through the new test driver for an equivalent but haven't > found such so far. There isn't an equivalent. The to_string() overloads were replaced by the corresponding formatting directives to rw_printf(). The test for rw_printf() (0.printf.cpp) is probably the best place to look for "documentation" on the specific directives: http://svn.apache.org/repos/asf/stdcxx/trunk/tests/self/0.printf.cpp If some directives or interesting use cases that you come across are missing from the test it would be great if you could add them to the test :) Martin