Search Results

9
votes

Performance of creating a C++ std::string from an input iterator.

I benchmarked your implementation(1), mine(2), and two others(3 and 4) that I found on stackoverflow. Results (Average of 100 runs; timed using gettimeofday, file was 40 paragraphs of lorem …
0
votes

Searching for a string ‘somewhere’ in a database

I've used variants of this in the past. …
9
votes

Is it legal to write to std::string?

std::string will be required to have contiguous storage with the new c++0x standard. Currently that is undefined behavior. …