cover2

I’m proud to present: The C++ Standard Library

/
The C++ Standard Library: All you have to know as a professional programmer about the C++ library.   I'm…
compare

Compare and Modify Types

/
The type-traits library empowers you to compare and modify types. All is done at compile time therefore,…
primaryTypeCategories

Check Types

/
Template Metaprogramming is programming at compile time. But what has template metaprogramming in common…
gcd

More and More Save

/
In the post Statically checked I wrote that the functions of the type-traits library are an ideal fit…
static assert

Statically Checked

/
static_assert is the tool in modern C++ to make your code safe. static_assert The usage of static_assert…
parse

{}-Initialization

/
The initialization of variables was unified in C++11. The rule is quite simple. {}-Initialization is…
autoGetType

auto-matically inititialized

/
Probably the most frequently used feature of C++11 is auto. Thanks to auto, the compiler determines the…
facts

Facts

/
After the myths, the facts will follow. Therefore, we leave the area of half-truth and untruth statements…
lagerfeuer

Myths

/
As I started working in the embedded environment I was astonished that there was so much prejudice against…
BjarneStroustrup

Requirements of Embedded Programming

/
Bjarne Stroustrup's FAQ makes it crystal clear. One of the design goals for C++11 was to make C++ even…