<beman/optional/optional.hpp>
template<class... Args> constexpr explicit optional( in_place_t, Args...&&... args) requires std::is_constructible_v<T, Args...>;
Constructs the stored value in-place using the given arguments.