boost::cnv::lexical_cast — boost::lexical_cast-based converter
// In header: <boost/convert/lexical_cast.hpp> struct lexical_cast { // public member functions template<typename TypeOut, typename TypeIn> void operator()(TypeIn const &, boost::optional< TypeOut > &) const; };
The purpose of the converter is to
Make use of the boost::lexical_cast functionality and performance that many people have become accustomed to and comfortable with;
Demonstrate how existing independent conversion/transformation-related facilities might be The converter can easily replace boost::lexical_cast, adding flexibility and convenience.