Boost logo

Boost Users :

Subject: Re: [Boost-users] [uuid] to string problem
From: John Dlugosz (JDlugosz_at_[hidden])
Date: 2010-05-11 14:54:51



> > or standalone function? AFAIK lexical_cast has a lot of overhead :(
>
> Hmm, I haven't really given it much thought. Since it doesn't need to
> be a member function, I would lean toward a standalone function. Do
> any other libraries have a similar function? I would likely create:
>
> template <typename C, typename T, typename A>
> std::basic_string<C, T, A> to_basic_string(boost::uuids::uuid const&
> u);
>
> as well as,
>
> std::string to_string(boost::uuids::uuid const& u);
> std::wstring to_wstring(boost::uuids::uuid conts& u);
>


How about making explicit specializations of lexical_cast that would be faster than the general implementation? That way the optimization is invisible.

Also validate your assumptions that it is slow! I saw some code to format a number that ran it through iostreams, and thought why not use the standard ltoa (or whatever it was)? Turns out that the iostream way was much faster! It inlined everything and simplified the result.

TradeStation Group, Inc. is a publicly-traded holding company (NASDAQ GS: TRAD) of three operating subsidiaries, TradeStation Securities, Inc. (Member NYSE, FINRA, SIPC and NFA), TradeStation Technologies, Inc., a trading software and subscription company, and TradeStation Europe Limited, a United Kingdom, FSA-authorized introducing brokerage firm. None of these companies provides trading or investment advice, recommendations or endorsements of any kind. The information transmitted is intended only for the person or entity to which it is addressed and may contain confidential and/or privileged material. Any review, retransmission, dissemination or other use of, or taking of any action in reliance upon, this information by persons or entities other than the intended recipient is prohibited. If you received this in error, please contact the sender and delete the material from any computer.


Boost-users list run by williamkempf at hotmail.com, kalb at libertysoft.com, bjorn.karlsson at readsoft.com, gregod at cs.rpi.edu, wekempf at cox.net