std::projected

来自cppreference.com
< cpp‎ | iterator
 
 
迭代器库
迭代器概念
迭代器原语
算法概念与工具
间接可调用概念
常用算法要求
工具
projected
迭代器适配器
流迭代器
迭代器定制点
迭代器操作
(C++11)
(C++11)
范围访问
(C++11)(C++14)
(C++11)(C++14)
(C++17)(C++20)
(C++14)(C++14)
(C++14)(C++14)
(C++17)
(C++17)
 
在标头 <iterator> 定义
(1)
template< std::indirectly_readable I,

          std::indirectly_regular_unary_invocable<I> Proj >
struct projected {
    using value_type = std::remove_cvref_t<std::indirect_result_t<Proj&, I>>;
    std::indirect_result_t<Proj&, I> operator*() const; // 不定义

};
(C++20 起)
(C++26 前)
template< std::indirectly_readable I,

          std::indirectly_regular_unary_invocable<I> Proj >

using projected = /*projected-impl*/<I, Proj>::/*__type*/; // 见后述
(C++26 起)
template< std::weakly_incrementable I, class Proj >

struct incrementable_traits<std::projected<I, Proj>> {
    using difference_type = std::iter_difference_t<I>;

};
(2) (C++20 起)
(C++26 前)
template< class I, class Proj >

struct /*projected-impl*/ { // 仅用于阐释
    struct /*__type*/ { // 仅用于阐释
        using value_type = std::remove_cvref_t<std::indirect_result_t<Proj&, I>>;
        using difference_type = std::iter_difference_t<I>; // 条件性存在

        std::indirect_result_t<Proj&, I> operator*() const; // 不定义
    };

};
(3) (C++26 起)
1) (C++26 前)别名 (C++26 起)模板 projected 组合 indirectly_readable 类型 I 与可调用对象类型 Proj 到新的 indirectly_readable 类型中,其引用类型是应用 Projstd::iter_reference_t<I> 的结果。
2) std::incrementable_traits 的此特化使 std::projected<I, Proj>Iweakly_incrementable 类型时亦为 weakly_incrementable 类型。
3) 用于避免不期待的实参依赖查找的间接层。成员类型 difference_type 仅若 I 实现 weakly_incrementable 才存在。

projected 仅用于约束约接受可调用对象与投影的算法,从而其 operator*() 没有得到定义。

模板形参

I - 间接可读类型
Proj - 应用到解引用的 I 的投影

注解

间接层使得 IProj 不会成为 projected 的关联类。当一个 IProj 的关联类为不完整类类型时,间接层避免检查该类型的定义的尝试,而尝试会导致硬错误。