template< auto V >
struct nontype_t { explicit nontype_t() = default; }; |
(1) |
(自 C++26) |
template< auto V >
constexpr std::nontype_t<V> nontype {}; |
(2) |
(自 C++26) |
| | |
1) 类模板 std::nontype_t
可用于构造函数的参数列表中以匹配预期的标签。
2) 对应的
std::nontype
实例
(1) 是一个歧义消除参数标签,可以传递给
std::function_ref 的构造函数,以指示包含的对象应使用非类型模板参数
V
的值进行构造。
[编辑] 模板参数
[编辑] 另请参阅
|
任何可调用对象的非拥有包装器 (类模板) [编辑] |