On this page
std::ranges::views::take, std::ranges::take_view
Defined in header <ranges> |
||
|---|---|---|
|
(1) | (since C++20) |
|
(2) | (since C++20) |
| Call signature | ||
|
(since C++20) | |
|
(since C++20) |
view of the elements from an underlying sequence, starting at the beginning and ending at a given bound.
views::take is a RangeAdaptorObject. The expression views::take(e, f) results in a view that represents the first f elements from e. The result is not necessarily a take_view.
views::take(e, f) is expression-equivalent to (where T is std::remove_cvref_t<decltype((e))> and D is ranges::range_difference_t<decltype((e))>):
((void)f, decay-copy(e)), ifTis a ranges::empty_view, except that the evaluations ofeandfare indeterminately sequenced;U(ranges::begin(e), ranges::begin(e) + std::min<D>(ranges::distance(e), f)), ifTis a specialization of std::span,std::basic_string_view, or ranges::subrange that models bothrandom_access_rangeandsized_range, whereUis- std::span<typename T::element_type>, if
Tis a specialization of std::span; T, ifTis a specialization ofstd::basic_string_view;- ranges::subrange<ranges::iterator_t<T>>, if
Tis a specialization of ranges::subrange; ranges::iota_view(*ranges::begin(e),, if
*(ranges::begin(e) + std::min<D>(ranges::distance(e), f)))Tis a specialization of ranges::iota_view that models bothrandom_access_rangeandsized_range;
|
(since C++23) |
- otherwise,
take_view(e, f).
std::convertible_to<D>.
take_view models the concepts contiguous_range, random_access_range, bidirectional_range, forward_range, input_range, and sized_range when the underlying view V models respective concepts. It models common_range when the underlying view V models both random_access_range and sized_range.
Member functions
|
(C++20)
|
constructs a take_view (public member function) |
|
(C++20)
|
returns a copy of the underlying (adapted) view (public member function) |
|
(C++20)
|
returns an iterator to the beginning (public member function) |
|
(C++20)
|
returns an iterator or a sentinel to the end (public member function) |
|
(C++20)
|
returns the number of elements. Provided only if the underlying (adapted) range satisfies sized_range. (public member function) |
Inherited from |
|
|
(C++20)
|
returns whether the derived view is empty. Provided if it satisfies sized_range or forward_range. (public member function of std::ranges::view_interface<D>) |
|
(C++23)
|
returns a constant iterator to the beginning of the range. (public member function of std::ranges::view_interface<D>) |
|
(C++23)
|
returns a sentinel for the constant iterator of the range. (public member function of std::ranges::view_interface<D>) |
|
(C++20)
|
returns whether the derived view is not empty. Provided if ranges::empty is applicable to it. (public member function of std::ranges::view_interface<D>) |
|
(C++20)
|
gets the address of derived view's data. Provided if its iterator type satisfies contiguous_iterator. (public member function of std::ranges::view_interface<D>) |
|
(C++20)
|
returns the first element in the derived view. Provided if it satisfies forward_range. (public member function of std::ranges::view_interface<D>) |
|
(C++20)
|
returns the last element in the derived view. Provided if it satisfies bidirectional_range and common_range. (public member function of std::ranges::view_interface<D>) |
|
(C++20)
|
returns the nth element in the derived view. Provided if it satisfies random_access_range. (public member function of std::ranges::view_interface<D>) |
Deduction guides
Nested classes
|
(C++20)
|
the sentinel type (exposition-only member class template*) |
Helper templates
|
(since C++20) |
This specialization of std::ranges::enable_borrowed_range makes take_view satisfy borrowed_range when the underlying view satisfies it.
Example
#include <algorithm>
#include <iostream>
#include <ranges>
auto print = [](char x){ std::cout << x; };
int main()
{
constexpr char pi[]{'3', '.', '1', '4', '1', '5', '9', '2'};
std::ranges::for_each(pi | std::ranges::views::take(6), print);
std::cout << '\n';
// safely takes 8 chars only, i.e. min(pi.size(), 42)
std::ranges::for_each(std::ranges::take_view{pi, 42}, print);
std::cout << '\n';
}
Output:
3.1415
3.141592
Defect reports
The following behavior-changing defect reports were applied retroactively to previously published C++ standards.
| DR | Applied to | Behavior as published | Correct behavior |
|---|---|---|---|
| LWG 3407 | C++20 | views::take sometimes failed toconstruct a sized random access range |
the result type is adjusted so that construction is always valid |
| LWG 3494 | C++20 | take_view was never a borrowed_range |
it is a borrowed_range if its underlying view is |
See also
|
(C++20)
|
creates a subrange from an iterator and a count (customization point object) |
|
(C++20)
|
a view consisting of the initial elements of another view, until the first element on which a predicate returns false(class template) (range adaptor object) |
|
(C++20)
|
copies a number of elements to a new location (niebloid) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/ranges/take_view