Sharing
BLOGG
NEWS
Communication protocols in IoT – part 1
This is the first part of the blog series “Communication protocols in IoT” by Erik Dahlgren. Introduction With an ever-growing buzz about IoT and new connected products constantly introduced to the market, it can sometimes be difficult to get a clear […]
Read More6 Useful New Features in C++17 – Part 5
Constexpr lambdas Since C++11 we are able to use the constexpr specifier which evaluates the expression at compile time, with C++17 lambdas can also be constant expressions. One use case could be to initialize constexpr variables that depend on other […]
Read More6 Useful New Features in C++17 – Part 4
This is the fourth part of the series “6 Useful New Features in C++17”, the first part can be found here. If Statements with constexpr Condition This is a feature that perhaps has its main use while working with templated […]
Read More6 Useful New Features in C++17 – Part 3
This is the third part of the series “6 Useful New Features in C++17”, the first part can be found here. Init statements in if statements Like for statements, if and switch statements get an initializer part. Convenient when handling […]
Read More6 Useful New Features in C++17 – Part 2
This is the second part of the series “6 Useful New Features in C++17”, the first part can be found here. Structured Binding One thing that has been bugging me when trying to write nice looking code is iterating […]
Read More6 Useful New Features in C++17 – Part 1
In this 5 parts of blog series, Patrik from Scionova will talk about useful features in C++17, that can help you write better codes. Every Monday and Thursday new posts in this series will come out. Every now and again, I […]
Read More