std::basic_common_reference<std::reference_wrapper>
定义于头文件 <functional> |
||
template< class R, class T, template<class> RQual, template<class> TQual > |
(1) | (C++23 起) |
template< class T, class R, template<class> TQual, template<class> RQual > |
(2) | (C++23 起) |
辅助概念 |
||
template< class R, class T, class RQ, class TQ > concept /*ref-wrap-common-reference-exists-with*/ = |
(3) | (仅作说明*) |
reference_wrapper
(表示为 R)与类型 T 的共同引用类型,分别应用 cv 和引用限定符(分别表示为 RQ 和 TQ),等价于 R 的底层类型应用左值引用和 TQ 的共同引用类型。
仅当 R 是唯一 reference_wrapper
时才定义共同引用类型,并且 R 的底层类型应用左值引用和 TQ 具有共同引用类型,RQ 必须可转换为该共同引用类型。
仅当 R 是 std::reference_wrapper 的特化时,才为 exposition-only 常量 /*is-ref-wrapper*/<R> 的值为 true。
目录 |
[编辑] 成员类型
成员类型 | 定义 |
类型
|
std::common_reference_t<typename R::type&, TQual<T>> (1,2) |
[编辑] 注解
特性测试宏 | 值 | 标准 | 特性 |
---|---|---|---|
__cpp_lib_common_reference_wrapper |
202302L |
(C++23) | 将 std::reference_wrapper 的 std::common_reference_t 设为引用类型 |
[编辑] 示例
#include <concepts> #include <functional> static_assert(std::same_as<std::common_reference_t<int&, std::reference_wrapper<int>>, int&>); static_assert(std::same_as<std::common_reference_t<std::reference_wrapper<int>&, int&>, int&>); static_assert(std::same_as<std::common_reference_t<int&, const std::reference_wrapper<int>&>, int&>); int main() {}
[编辑] 参阅
确定一组类型的公共引用类型 (类模板) |