std::function_ref
的推导指南
来自 cppreference.com
< cpp | utility | functional | function ref
定义在头文件 <functional> 中 |
||
template< class F > function_ref( F* ) -> function_ref<F>; |
(1) | (自 C++26 起) |
template< auto f > function_ref( std::nontype_t<f> ) -> function_ref</*见下文*/>; |
(2) | (自 C++26 起) |
template< auto f, class T > function_ref( std::nontype_t<f>, T&& ) -> function_ref</*见下文*/>; |
(3) | (自 C++26 起) |
2) 令类型 F 为 std::remove_pointer_t<decltype(f)>。仅当 std::is_function_v<F> 为 true 时,此重载才参与重载解析。推断的类型为 std::function_ref<F>。
3) 令类型 F 为 decltype(f)。此重载仅在以下情况下才参与重载解析:
- F 的形式为 R(G::*)(A...) noexcept(E) (可选地进行 cv 限定,可选地进行 noexcept 限定,可选地进行左值引用限定)用于类型 G,或
- F 的形式为 M G::* 用于类型 G 和对象类型 M,在这种情况下令 R 为 std::invoke_result_t<F, T&>,A... 为一个空包,且 E 为 false,或
- F 的形式为 R(*)(G, A...) noexcept(E) 用于类型 G。
- 推断的类型是 std::function_ref<R(A...) noexcept(E)>.
[编辑] 示例
本节内容不完整 原因:没有示例 |