stack overview
machines should work; people should think!
Sunday, 30 October 2011
LINQ in C++
›
What is LINQ? LINQ stands for Language Integrated Query - a .NET component which comes with .NET 3.5 and above. It provides facilit...
Sunday, 21 August 2011
Playing around with Boost.Spirit - Parsing integer triplets
›
I'm exploring Boost.Spirit and while doing so, I'm trying to parse integer triplets for input of the following form: (8,7,15) (0,...
Thursday, 9 June 2011
Why copy-semantics of stream classes from Standard Library are disabled?
›
C++ Standard IO Library defines several stream classes, such as std::istream, std::ostream, std::iostream, std::ifstream, std::ofstream, ...
Tuesday, 7 June 2011
Religion of C
›
Taken from here Oh Ken, thou who art the Root of Roots, hallowed be thy name. May you this day grant me my daily malloc. May my functions n...
Saturday, 16 April 2011
Create string on the fly just in one line
›
We often make use of std::stringstream to convert values of various types into a single std::string. For example, see this: std::stringst...
Sunday, 10 April 2011
Calculating size of arrays - one dimensional and multiple dimensional
›
Someone asked at stackoverflow : How to get size of an array using metaprogramming? My solution: For one dimensional arrays, template...
1 comment:
Elegant ways to tokenize strings
›
Last night I posted a solution at stackoverflow. The question was : what is the right way to split a string into a vector of strings. De...
Home
View web version