c++ Programming Glossary: alexandrescu's
When should functions be member functions? http://stackoverflow.com/questions/1638394/when-should-functions-be-member-functions member non friend functions to member functions and Sutter Alexandrescu's C Coding Standards 44 Prefer writing nonmember nonfriend functions..
C++ Error Handling — Good Sources of Example Code? http://stackoverflow.com/questions/231128/c-error-handling-good-sources-of-example-code share improve this question Herb Sutter's and Andrei Alexandrescu's book C Coding Standards comes with a whole chapter on Error..
Singleton pattern in C++ http://stackoverflow.com/questions/2496918/singleton-pattern-in-c share improve this question You should probably read up Alexandrescu's book. Regarding the local static I haven't use Visual Studio..
Is there a sorted_vector class, which supports insert() etc.? http://stackoverflow.com/questions/2710221/is-there-a-sorted-vector-class-which-supports-insert-etc vector based associative containers based on Austern's and Alexandrescu's guidelines. These ordered vector containers have also benefited..
How many and which are the uses of “const” in C++? http://stackoverflow.com/questions/455518/how-many-and-which-are-the-uses-of-const-in-c T MakeGuard T t return Derived T t This trick is used in Alexandrescu's ScopeGuard utility class. Once the temporary goes out of scope..
Writing my own C++ compiler http://stackoverflow.com/questions/575143/writing-my-own-c-compiler gets templates right in all circumstances. Consider Andrej Alexandrescu's efford to write template function versions of min and max that..
Does there exist a static_warning? http://stackoverflow.com/questions/8936063/does-there-exist-a-static-warning aborting compilation error. I'd like something similar to Alexandrescu's proposal for a static assert in pre C 11 days which somehow..
Why can't I specialize the nested template member without specializing enclosing class template first? http://stackoverflow.com/questions/9219157/why-cant-i-specialize-the-nested-template-member-without-specializing-enclosing I appreciate any help with logical explanation Edit Andrei Alexandrescu's reply There's no particular reason it's just a language rule...
|