Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

28
votes
9answers
8k views

Very poor boost::lexical_cast performance

Windows XP SP3. Core 2 Duo 2.0 GHz. I'm finding the boost::lexical_cast performance to be extremely slow. Wanted to find out ways to speed up the code. Using /O2 optimizations on visual c++ 2008 and ...
12
votes
2answers
2k views

How can I extend a lexical cast to support enumerated types?

I have the following function that will convert a string into a numeric data type: template <typename T> bool ConvertString(const std::string& theString, T& theResult) { ...
8
votes
1answer
875 views

Convert string to integer type in Go?

I'm trying to convert a string returned from flag.Arg(n) to an int. What is the idiomatic way to do this in Go?
7
votes
3answers
1k views

lexical_cast int to string

Is it safe to ignore exception of boost::lexical_cast when converting int to std::string?
5
votes
1answer
188 views

Using boost::lexical_cast with std::transform

g++ doesn't like: vector<int> x; x += 1,2,3,4,5; vector<string> y(x.size()); transform(x.begin(), x.end(), y.begin(), lexical_cast<string>); The error message is: error: no ...
4
votes
1answer
56 views

Is there a way to use SFINAE to determine if a call to a templated function would fail due to the types provided?

I have a templated class that I am using to provide a method that will use boost::lexical_cast to cast its std::string parameters to the type specified in the template, only if the lexical cast is ...
3
votes
2answers
703 views

Combine boost::lexical_cast and std::transform

I would like to write something like this, which cannot be compiled: std::vector<A> as; std::vector<B> bs( as.size() ); std::transform( as.beginn(), as.end(), bs.begin(), ...
2
votes
1answer
34 views

Using boost::lexical_cast with custom operator<< in namespace

Given two namespaces which each provide a specialization of operator<< for std::vector, is it possible to use boost::lexical_cast? I know the code will work if I promote one of the operators ...
2
votes
1answer
57 views

Enabling Classes for Use with boost::lexical_cast

Code snippet from lexical_cast: class lexical_castable { public: lexical_castable() {}; lexical_castable(const std::string s) : s_(s) {}; friend std::ostream operator<< ...
2
votes
1answer
136 views

Alternative to lexical_cast<T>(std::string)

I've got templated code that uses lexical_cast. Now I want to remove all the lexical_cast calls (because it doesn't work well with /clr). I need to cast object between std::string and their value. ...
2
votes
1answer
629 views

How do I use boost::lexical_cast and std::boolalpha? i.e. boost::lexical_cast< bool >(“true”)

I've seen some answers to other boost::lexical_cast questions that assert the following is possible: bool b = boost::lexical_cast< bool >("true"); This doesn't work for me with g++ 4.4.3 ...
2
votes
1answer
97 views

lex_cast: Make formatted streams, unformatted

I once saw this nice little snippet of code below, here at SO: template<typename to_t, typename from_t> to_t lex_cast(const from_t &arg) { to_t ret; std::stringstream os; os ...
2
votes
6answers
1k views

How to use the boost lexical_cast library for just for checking input

I use the boost lexical_cast library for parsing text data into numeric values quite often. In several situations however, I only need to check if values are numeric; I don't actually need or use the ...
1
vote
1answer
113 views

std::istream extraction sets failbit for no apparent reason

I'm creating a primitive type wrapper, which can use boost::lexical_cast for setting its value from a string. It works fine, but for some reason std::istream extraction operator sets the failbit. The ...
1
vote
3answers
249 views

C++ boost lexical_cast with template?

I'm trying to build a class that stores program settings as a std::map. Since all the program settings are stored as strings I'd like an accessor method that can return the program setting casted to ...
1
vote
3answers
810 views

boost lexical_cast throws exception

I'm using boost libs for c++ and the function lexical_cast behaves really weird. If I do lexical_cast("0.07513994") it works fine, but if I use my variable which I need to convert, it throws the ...
1
vote
3answers
3k views

Convert C++Builder AnsiString to std::string via boost::lexical_cast

For a school assignment I have to implement a project in C++ using Borland C++ Builder. As the VCL uses AnsiString for all GUI Components I have to convert all of my std::strings to AnsiString for ...
0
votes
2answers
97 views

boost::lexical_cast and stringification of non-builtin types

I have a (maybe) simple problem about boost::lexical_cast with composite types (in my case std::vector. My first version of a templatized stringification function was the following template ...
0
votes
2answers
47 views

boost lexical cast <int> check

Gentlemen, Should be an easy one. I have a function that traverses a csv and tokenizes based on commas and does things with the tokens. One of these things is convert it into an int. Unfortunately, ...
0
votes
1answer
65 views

boost::lexical_cast from string to char exception

I am new to using boost::lexical_cast and have minimal understanding of its internals. I am trying to do the following cast: string someString = boost::lexical_cast<char>(sourceString); ...
0
votes
2answers
105 views

How do I get Boost.LexicalCast to work?

I'm having issues with boost::lexical_cast. I am trying to use it on a class from the GLM (OpenGL Mathematics) library. To allow for lexical casting, I have implemented operator<< functions for ...
0
votes
4answers
252 views

Template specialization for char pointer?

boost::lexical_cast is a great tool but in my application I ran into a limitation in string -> bool conversion that is bugging me. I need to convert all strings like "0", "false" and "FALSE" into ...
0
votes
2answers
133 views

stringstream: why does “showpoint” behave similar as “fixed”?

I'd like to write my own lexical_cast which preserves the decimal point when converting double to std::string. So I'm using ostringstream and set the flag std::ios::showpoint: #include <string> ...