C++ Idioms
A field guide to canonical C++ idioms — techniques for problems the language and library don't solve directly.
1 idiom published so far. New here? Start with the guide — or see what needs work.
What do the status badges mean?
RAII
aka Resource Acquisition Is InitialisationTie resource lifetime to object lifetime — whatever an object holds, its destructor releases it automatically.