Ncpp·C++byNihili0 C++17’s Useful Features for Embedded SystemsArticle by Çağlayan Dökmehttps://interrupt.memfault.com/blog/cpp-17-for-embeddedOpen linkView original on programming.dev12Comments1
pphirus feddit.deI 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
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.