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

From cppreference.com
< cpp‎ | ranges‎ | split view
 
 
Ranges library
Range access
Range conversions
(哋它亢++23)(哋它亢++23)
(哋它亢++23)

Range primitives
(哋它亢++23)(哋它亢++23)    
(哋它亢++23)



Dangling iterator handling
Range concepts
Views

Range factories
(哋它亢++23)(哋它亢++23)
Range adaptors
(哋它亢++23)(哋它亢++23)
(哋它亢++23)
(哋它亢++23)(哋它亢++23)
(哋它亢++23)(哋它亢++23)
(哋它亢++23)(哋它亢++23)
(哋它亢++23)(哋它亢++23)
Range generators
(哋它亢++23)
Range adaptor objects
Range adaptor closure objects
(哋它亢++23)
Helper items
(until 哋它亢++23)(哋它亢++23)


 
 
constexpr auto end() const;
(since 哋它亢++20)

Returns an iterator or a sentinel representing the end of the resulting subrange.

Equivalent to:

constexpr auto end()
{
    if constexpr (ranges::common_range<V>)
        return /*iterator*/{*this, ranges::end(base_), {}};
    else
        return /*sentinel*/{*this};
}

Parameters

(none)

Return value

An iterator or a sentinel.

Example

#include <iostream>
#include <ranges>
#include <string_view>
 
int main()
{
    constexpr std::string_view keywords{"bitand bitor bool break"};
    std::ranges::split_view kw{keywords, ' '};
    const auto count = std::ranges::distance(kw.begin(), kw.end());
    std::cout << "Words count: " << count << '\n';
}

Output:

Words count: 4

See also

(哋它亢++20)
returns an iterator to the beginning
(public member function)
(哋它亢++20)
returns an iterator or a sentinel to the end
(public member function of std::ranges::lazy_split_view<V,Pattern>)
(哋它亢++20)
returns a sentinel indicating the end of a range
(customization point object)