命名空间
变体
操作

std::ranges::adjacent_view<V,N>::begin

来自 cppreference.com
 
 
范围库
范围适配器
 
 
constexpr auto begin() requires (!__SimpleView<V>);
(1) (自 C++23 起)
constexpr auto begin() const requires ranges::range<const V>;
(2) (自 C++23 起)

返回指向 adjacent_view 的第一个元素的 迭代器

base_ 为基础视图。

1) 等效于 return /*iterator*/<false>(ranges::begin(base_), ranges::end(base_));.
2) 等效于 return /*iterator*/<true>(ranges::begin(base_), ranges::end(base_));.

内容

[编辑] 参数

(无)

[编辑] 返回值

指向第一个元素的迭代器。

[编辑] 示例

#include <ranges>
#include <tuple>
#include <type_traits>
 
int main()
{
    constexpr static auto v = {'A', 'B', 'C', 'D', 'E'};
 
    constexpr auto view = std::views::adjacent<3>(v);
 
    constexpr auto tuple = *view.begin();
 
    static_assert
    (
        std::is_same_v
        <
            decltype(tuple),
            const std::tuple<char const&, char const&, char const&>
        >
    );
 
    static_assert
    (
        std::get<0>(tuple) == 'A' &&
        std::get<1>(tuple) == 'B' &&
        std::get<2>(tuple) == 'C'
    );
}

[编辑] 另请参见

返回指向末尾的迭代器或哨兵
(公共成员函数) [编辑]
返回指向范围开头的迭代器
(定制点对象)[编辑]