C++17’s Useful Features for Embedded Systems
C++17’s Useful Features for Embedded Systems
interrupt.memfault.com C++17’s Useful Features for Embedded Systems
In this article, you will find some features of C++17 that can also be helpful in the embedded world.
Article by Çağlayan Dökme
You're viewing a single thread.
All Comments
1 comments
I also like to use std::optional if a function may not return a result so I won't have to return a pointer, that might be a nullptr.
And std::variant as a typesafe less hacky union.
1 0 Reply