Constructs an any object holding a value of type T (deprecated).
Declared in <absl/types/any.h>
template<
typename T,
typename... Args>
[[deprecated]]
constexpr
decltype(std::make_any<T>(std::declval<Args>()...))
make_any(Args&&... args);
Deprecated. Use of this entity is allowed but discouraged.
An any holding the constructed value.
| Name | Description |
|---|---|
| args | Arguments forwarded to std::make_any. |