c++ Programming Glossary: abrahams
Best introduction to C++ template metaprogramming? http://stackoverflow.com/questions/112277/best-introduction-to-c-template-metaprogramming resource I've found is C Template Metaprogramming by David Abrahams and Aleksey Gurtovoy ISBN 13 9780321227256 If you'd prefer just..
C: Good Habits re: Transitioning to C++ http://stackoverflow.com/questions/1420685/c-good-habits-re-transitioning-to-c ever be. Even if we ignore Stroustrup names like Meyers Abrahams Alexandrescu Sutter etc. regularly crop up alongside new ideas...
C++: do you (really) write exception safe code? [closed] http://stackoverflow.com/questions/1853243/c-do-you-really-write-exception-safe-code throwing swap. Edit 2011 11 06 Interesting article Dave Abrahams who gave us the basic strong nothrow guarantees described in..
In C++, is it still bad practice to return a vector from a function? http://stackoverflow.com/questions/3134831/in-c-is-it-still-bad-practice-to-return-a-vector-from-a-function value optimization share improve this question Dave Abrahams has a pretty comprehensive analysis of the speed of passing..
Function template specialization http://stackoverflow.com/questions/3935421/function-template-specialization c is explicit specialization of b . Example 3 The Dimov Abrahams Example template class T a same old base template as before..
C++ Move semantics and Exceptions http://stackoverflow.com/questions/4732084/c-move-semantics-and-exceptions It might also be worth reading a blog article by David Abrahams that discusses the issues that N3050 was intended to address..
Is pass-by-value a reasonable default in C++11? http://stackoverflow.com/questions/7592630/is-pass-by-value-a-reasonable-default-in-c11 you need to make a copy inside the body. This is what Dave Abrahams is advocating Guideline Don ™t copy your function arguments...
|