Quick Q: Is 'auto' type deduction static (compile time) or dynamic (run time)?
Recently on StackOverflow:
C++ 11 auto compile time or runtime?
auto a = 10;When compiler knows
aisint, at compile time or at run-time? If it deduce type at run-time, will it not affect performance?

A little nugget about the free-as-in-no-overhead-ness of
In this article, Eric Niebler discusses an issue of API design regarding the age-old question of out parameters versus return-by-value, this time in light of move semantics. He uses 