std::ranges::join_with_view<V,Pattern>::end

来自cppreference.com
 
 
范围库
范围适配器
 
 
constexpr auto end();
(1) (C++23 起)
constexpr auto end() const

    requires ranges::forward_range<const V> &&
             ranges::forward_range<const Pattern> &&
             std::is_reference_v<ranges::range_reference_t<const V>>> &&
             ranges::input_range<ranges::range_reference_t<const V>> &&
             /*concatable*/<ranges::range_reference_t<const V>,

                            const Pattern>;
(2) (C++23 起)

返回与 join_with_view 的尾后迭代器比较相等的迭代器哨位

1) 返回可变迭代器/哨位或常迭代器/哨位。
  • 如果满足以下所有条件,那么就会返回迭代器:
  • 否则返回哨位。
2) 返回常迭代器/哨位。
  • 如果满足以下所有条件,那么就会返回迭代器:
  • 否则返回哨位。
/*concatable*/ 的定义见 std::ranges::concat_view

返回值

表示 join_with_view 末尾的迭代器或哨位,如上所述。

示例

 重载  返回值
迭代器 哨位
(1) iterator <simple-view <V> &&
         simple-view <Pattern>>
    {*this, ranges::end(base_)}
 sentinel <simple-view <V> &&
         simple-view <Pattern>>
    {*this}
 
(2)  iterator <true>{*this, ranges::end(base_)}  sentinel <true>{*this}

参阅

返回指向起始的迭代器
(公开成员函数)
返回指示范围结尾的哨位
(定制点对象)