Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in stdoptional

Copy/move elision vs emplace with std::optional

Iterating over std::optional

c++ option-type stdoptional

prevent initializing std::optional<std::reference_wrapper<const T>> with rvalue std::optional<T>

Can I copy-elide an immovable & uncopyable function result into an optional?

Use of std::optional to pass a std::vector<int> to a functional by reference

c++ std c++17 stdoptional

Why std::string append is not overloaded on rval ref?

Does C++ standard allow std::optional<double> to be implemented without overhead

How to move a value out of a std:optional without calling the destructor?

Why std::optional::value() &&; return &&?

c++ c++17 stdoptional

In which cases does std::optional operator == cause undefined behavior?

c++ c++17 stdoptional

When is it appropriate to use std::optional

namespace std:: does not contain optional

c++ stdoptional

Use std::optional as a regular pointer vs use has_value() and value

c++ c++17 stdoptional

Is '_HAS_CXX17' macro usable in custom project headers to enable C++17 language set features?

In C++17 can an if statement with an initializer be used to unpack an optional?

c++ c++17 stdoptional

Why does the const rvalue qualified std::optional::value() return a const rvalue reference?

How to in-place-construct an optional aggregate?

Does anything prevent std::optional::value_or() from being conditionally noexcept?

How to get std::optional support in Xcode?