¡@

Home 

c++ Programming Glossary: andrei

Best introduction to C++ template metaprogramming?

http://stackoverflow.com/questions/112277/best-introduction-to-c-template-metaprogramming

for C programming in general is Modern C Design by Andrei Alexandrescu ISBN 13 9780201704310. This book mixes a bit of..

How to make generic computations over heterogeneous argument packs of a variadic template function?

http://stackoverflow.com/questions/14261183/how-to-make-generic-computations-over-heterogeneous-argument-packs-of-a-variadic

like fashion and so on. After watching this lecture by Andrei Alexandrescu from C and Beyond 2012 on the desirability of static..

When can typeid return different type_info instances for same type?

http://stackoverflow.com/questions/1819114/when-can-typeid-return-different-type-info-instances-for-same-type

typeid return different type_info instances for same type Andrei Alexandrescu writes in Modern C Design The objects returned.. storage so you don't have to worry about lifetime issues. Andrei continues The standard does not guarantee that each invocation..

C++ Error Handling — Good Sources of Example Code?

http://stackoverflow.com/questions/231128/c-error-handling-good-sources-of-example-code

handling share improve this question Herb Sutter's and Andrei Alexandrescu's book C Coding Standards comes with a whole chapter..

Open source examples of well designed applications [closed]

http://stackoverflow.com/questions/234276/open-source-examples-of-well-designed-applications

designed C library projects in the world. Herb Sutter and Andrei Alexandrescu C Coding Standards Item 55 Familiarize yourself..

Returning object from function

http://stackoverflow.com/questions/2616107/returning-object-from-function

a reference I learnt about it in this publication by Andrei Anexandrescu. Again it feels weird but useful class Foo .....

Is it more efficient to return a const reference

http://stackoverflow.com/questions/275795/is-it-more-efficient-to-return-a-const-reference

of the temporary. The move constructor is basically what Andrei envisioned some years ago in the article http www.ddj.com database..

shared_ptr by reference or by value?

http://stackoverflow.com/questions/3310737/shared-ptr-by-reference-or-by-value

This question has been discussed and answered by Scott Andrei and Herb during Ask Us Anything session at C and Beyond 2011..

Passing Variable Number of Arguments with different type - C++

http://stackoverflow.com/questions/3555583/passing-variable-number-of-arguments-with-different-type-c

101 Rules Guidelines And Best Practices by Herb Sutter and Andrei Alexandrescu chapter 98 Don't use varargs ellipsis I deeply..

Is this rule about volatile usage strict?

http://stackoverflow.com/questions/4168735/is-this-rule-about-volatile-usage-strict

that then followed on comp.lang.c .moderated. IIRC Andrei hijacks the volatile keyword to use it to discriminate between..

Does ScopeGuard use really lead to better code?

http://stackoverflow.com/questions/48647/does-scopeguard-use-really-lead-to-better-code

lead to better code I came across this article written by Andrei Alexandrescu and Petru Marginean many years ago which presents..

Design pattern used in projects

http://stackoverflow.com/questions/5039196/design-pattern-used-in-projects

projects loki lib the original author of loki Andrei Alexandrescu went over many of the design details in a c classic..

Suggestion for template book for C++?

http://stackoverflow.com/questions/514981/suggestion-for-template-book-for-c

Vandevoorde and Nicolai M. Josuttis Modern C Design by Andrei Alexandrescu The first one explains how templates work. The..

What is the C++ iostream endl fiasco?

http://stackoverflow.com/questions/5492380/what-is-the-c-iostream-endl-fiasco

iostream endl fiasco I was listening to a google talk by Andrei Alexandrescu on the D programming language when he threw out..

C++ iterators considered harmful?

http://stackoverflow.com/questions/838721/c-iterators-considered-harmful

harmful At the Boost C Libraries library conference today Andrei Alexandrescu author of the book Modern C Design and the Loki.. fundamental concept of computer science ever. I unlike Andrei also think that iterators are intuitive . Yes definitely but.. Hmm. Looking at Boost.Range and C 0x haven't they already Andrei's big contribution here is just to say drop the concept of iterators..