std::projected
定义在头文件 <iterator> 中 |
||
(1) | ||
template< std::indirectly_readable I, std::indirectly_regular_unary_invocable<I> Proj > |
(自 C++20 起) (直到 C++26) |
|
template< std::indirectly_readable I, std::indirectly_regular_unary_invocable<I> Proj > |
(自 C++26 起) | |
template< std::weakly_incrementable I, class Proj > struct incrementable_traits<std::projected<I, Proj>> |
(2) | (自 C++20 起) (直到 C++26) |
template< class I, class Proj > struct /*projected-impl*/ |
(3) | (自 C++26 起) (仅供说明*) |
projected
将一个 indirectly_readable
类型 I
和一个可调用对象类型 Proj
组合成一个新的 indirectly_readable
类型,其引用类型是将 Proj
应用于 std::iter_reference_t<I> 的结果。I
也是一个 weakly_incrementable
类型时成为一个 weakly_incrementable
类型。projected
仅用于约束接受可调用对象和投影的算法,因此其 operator*() 未定义。
内容 |
[编辑] 模板参数
I | - | 间接可读类型 |
Proj | - | 应用于解引用 I 的投影 |
[编辑] 说明
间接层可防止 I
和 Proj
成为 projected
的关联类。当 I
或 Proj
的关联类是未完成的类类型时,间接层会避免不必要的尝试检查该类型的定义,从而导致硬错误。
[编辑] 示例
#include <algorithm> #include <cassert> #include <functional> #include <iterator> template<class T> struct Holder { T t; }; struct Incomplete; using P = Holder<Incomplete>*; static_assert(std::equality_comparable<P>); // OK static_assert(std::indirectly_comparable<P*, P*, std::equal_to<>>); // Error before C++26 static_assert(std::sortable<P*>); // Error before C++26 int main() { P a[10] = {}; // ten null pointers assert(std::count(a, a + 10, nullptr) == 10); // OK assert(std::ranges::count(a, a + 10, nullptr) == 10); // Error before C++26 }
[编辑] 另请参见
(C++26) |
通过投影计算 indirectly_readable 类型的值类型(别名模板) |