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