std::ranges::views::drop, std::ranges::drop_view - cppreference.com
From cppreference.com
| Defined in header |
||
|
|
(1) | (since C++20) |
|
|
(2) | (since C++20) |
| Call signature |
||
|
|
(since C++20) | |
|
|
(since C++20) | |
1) A range adaptor consisting of elements of the underlying sequence, skipping the first N elements.
2) RangeAdaptorObject. Given T is std::remove_cvref_t<decltype((e))> and D is ranges::range_difference_t<decltype((e))>), the expression views::drop(e, f) is expression-equivalent to:
((void)f,decay-copy(e)), ifTis a ranges::empty_view, except that the evaluations ofeandfare indeterminately sequenced;- otherwise,
T(ranges::begin(e) + inc, ranges::end(e),/*to-unsigned-like*/(ranges::distance(e) - inc)), ifTis a specialization ofranges::subrangethat models bothrandom_access_rangeandsized_range, andTneeds to store the size (see ranges::subrange::subrange() for details), whereincisstd::min<D>(ranges::distance(e), f); - otherwise,
U(ranges::begin(e) + inc, ranges::end(e)), ifTis a specialization ofstd::span, std::basic_string_view,ranges::iota_view, orranges::subrangethat models bothrandom_access_rangeandsized_range, whereUis
std::span<typename T::element_type>, ifTis a specialization ofstd::span;Totherwise;
|
(since C++23) |
- otherwise,
drop_view(e, f).
In all cases, decltype((f)) must model std::convertible_to<D>.
drop_view models the concepts contiguous_range, random_access_range, bidirectional_range, forward_range, input_range, common_range, and sized_range when the underlying view V models respective concepts.
Data members
| Member | Description |
V base_ (private)
|
the underlying view (exposition-only member object*) |
ranges::range_difference_t<V> count_ (private)
|
the number of elements to skip (exposition-only member object*) |
non-propagating-cache<ranges::iterator_t<V>> cache_ (private) (present only if V satisfies forward_range but not random_access_range and sized_range)
|
an object that caches the result of calls to begin()(exposition-only member object*) |
Member functions
constructs a drop_view (public member function) [edit] | |
| returns a copy of the underlying (adapted) view (public member function) [edit] | |
| returns an iterator to the beginning (public member function) [edit] | |
| returns an iterator or a sentinel to the end (public member function) [edit] | |
returns the number of elements, provided only if the underlying (adapted) range satisfies sized_range (public member function) [edit] | |
(C++26) |
returns the approximate size of the resulting approximately_sized_range (public member function) [edit] |
Inherited from ranges::view_interface | |
returns whether the derived view is empty, provided only if it satisfies sized_range or forward_range (public member function of std::ranges::view_interface<D>) [edit]
| |
(C++23) |
returns a constant iterator to the beginning of the range (public member function of std::ranges::view_interface<D>) [edit]
|
(C++23) |
returns a sentinel for the constant iterator of the range (public member function of std::ranges::view_interface<D>) [edit]
|
| returns whether the derived view is not empty, provided only if ranges::empty is applicable to it (public member function of std::ranges::view_interface<D>) [edit]
| |
gets the address of derived view's data, provided only if its iterator type satisfies contiguous_iterator (public member function of std::ranges::view_interface<D>) [edit]
| |
returns the first element in the derived view, provided if it satisfies forward_range (public member function of std::ranges::view_interface<D>) [edit]
| |
returns the last element in the derived view, provided only if it satisfies bidirectional_range and common_range (public member function of std::ranges::view_interface<D>) [edit]
| |
returns the nth element in the derived view, provided only if it satisfies random_access_range (public member function of std::ranges::view_interface<D>) [edit]
| |
Deduction guides
Helper templates
|
|
(since C++20) | |
This specialization of ranges::enable_borrowed_range makes drop_view satisfy borrowed_range when the underlying view satisfies it.
Example
#include <initializer_list> #include <iostream> #include <ranges> int main() { const auto nums = {1, 2, 3, 4, 5, 6, 7}; std::cout << "drop " << 2 << ": "; for (int i : std::ranges::drop_view{nums, 2}) std::cout << i << ' '; std::cout << '\n'; std::cout << "drop " << 3 << ": "; for (int i : nums | std::views::drop(3)) std::cout << i << ' '; std::cout << '\n'; std::cout << "drop " << 4 << ": "; for (int i : std::views::iota(1, 8) | std::views::drop(4)) std::cout << i << ' '; std::cout << '\n'; // Note that dropping more than the number of elements is OK: for (int dp : {5, 6, 7, 890, 100500}) { std::cout << "drop " << dp << ": "; for (int i : std::views::iota(1, 8) | std::views::drop(dp)) std::cout << i << ' '; std::cout << '\n'; } }
Output:
drop 2: 3 4 5 6 7 drop 3: 4 5 6 7 drop 4: 5 6 7 drop 5: 6 7 drop 6: 7 drop 7: drop 890: drop 100500:
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::drop sometimes fails toconstruct a sized random access range |
the construction is adjusted so that it is always valid |
| LWG 3494 | C++20 | drop_view was never a borrowed_range
|
it is a borrowed_range if its underlying view is
|