News

C++ directly supports const as a language feature, so the compiler provides free compile-time checking of const objects. With properly designed interfaces that utilize const member functions, you are ...
The docs say that C++ containers may be iterated over "Pythonically" using "for .. in" syntax.. This works, but only sometimes. The code that Cython generates is not const-correct. Further, the code ...
Embedded C developers shy away from C++ out of concern for performance. The class construct is one of their main concerns. My previous article Code Craft – Embedding C++: Classes explored ...