Answers for "C++ std::optional"

C++
0

C++ std::optional

std::optional<std::string> gojira(bool present) {
	return present ? "angy" : {};
}
Posted by: Guest on February-22-2022

Browse Popular Code Answers by Language