Stop using bool in C++ for function parameters !
Introduction This article deals with the use of bool in C++. Should we use it or not? That is the question we will try to answer here. However, this is more of an open discussion than a coding rule. First of all, what is the bool type? A boolean variable is a variable that can […]
C++
(bool, C++11, expressive)
Range : Be expressive using smart iterators with Range based containers
Hi ! Today I am not going to talk about rendering. This article will deal with expressiveness in C++. Expressiveness? Yes, but about containers, range, and iterators. If you want to know more about writing expressive code in C++, I advise you to go on fluentcpp. If you want to know more about range, I […]
C++
(C++, clean code, expressive, iterator, Range, SFINAE, stl)