Isn't it better?
Refactoring with C++17 std::optional
by Bartlomiej Filipek
From the article:
There are many situations where you need to express that something is “optional” - an object that might contain a value or not. You have several options to implement such case, but with C++17 there’s probably the most helpful way: std::optional.
For today I’ve prepared one refactoring case where you can learn how to apply this new C++17 feature...
Add a Comment
Comments are closed.