decltype: C++0x Features in VC10, Part 3
Part 1 of this series covered lambdas, auto, and static_assert. Part 2 of this series covered rvalue references, which enable move semantics and perfect forwarding. Today, I'm going to talk about decltype, which allows perfect forwarding functions to have arbitrary return types. It's of interest to people who are writing highly gene...