Just saw the use of stdexp::optional in the program(C++). Google search result points me to std::optional. It is something not common or it is something that maybe custom defined somewhere in my program?
example:
stdexp::optional<std::string> foo; I'm a beginner in C++, so if someone can break down this into simple terms, that would be great
std::experimental. See en.cppreference.com/w/cpp/header/experimental/optional - Note that since C++17optionalis part of the standard, not experimental anymore.namespace stdexp { using std::experimental::optional; }Thanks!