C++ Core Guidelines: Rules about Performance
/
0 Comments
Before I write about the rules of performance, I will do a straightforward job. Accessing the elements…
Which pdf bundle should I provide? Make your choice!
Now, it's time to choose the next pdf bundle? You will get all posts, all source files, and a cmake file…
C++ Core Guidelines: Rules about Statements and Arithmetic
Today, I will write about the remaining rules to statements and the arithmetic rules. If you don't follow…
C++ Core Guidelines: More about Control Structures
My last German post C++ Core Guidelines: To Switch or not to Switch, that is the Question got…
C++ Core Guidelines: To Switch or not to Switch, that is the Question
First, I have to apologize. Today, I wanted to continue my journey through the C++ Core Guidelines with…
C++ Core Guidelines: Rules for Statements
Before I continue with the roughly 15 rules for statements, let me finish the two rules for expressions.…
C++ Core Guidelines: Rules about Don’ts
This post is about don'ts. Here are this post's two most important rules: Don't use std::move thoughtless…
C++ Core Guidelines: Rules for Conversions and Casts
What has narrowing conversion and casts in common? They are often the source of errors; therefore, I…
C++ Core Guidelines: More Rules for Expressions
I know this post's headline is a bit boring: More Rules for Expressions. Honestly, this post is about…
C++ Core Guidelines: Rules for Expressions
Today's post is about expressions. You should avoid complicated expressions, know the precedence rules…