Common Optimizations -- Andrzej Krzemieński
Today from the desk of Andrzej:
Common Optimizations
by Andrzej Krzemieński
From the article:
Language designers, compiler and library vendors make a great effort to make your programs run faster and faster. This post is a tour of some common performance optimizations in C++.
Consider the following code that deals with
std::string: ...

Some high-performance techniques that you an use for more than just parsing, including this week's darling of memory management:
From the desk of an author going by the name Pubby, a nice short article showing off "yield return" using Boost's coroutines library: