Scroll to navigation

std::ranges::views::filter,std::ranges::filter_view(3) C++ Standard Libary std::ranges::views::filter,std::ranges::filter_view(3)

NAME

std::ranges::views::filter,std::ranges::filter_view - std::ranges::views::filter,std::ranges::filter_view

Synopsis


Defined in header <ranges>
template< ranges::input_range V,


std::indirect_unary_predicate<ranges::iterator_t<V>> Pred
> (1) (since
requires ranges::view<V> && std::is_object_v<Pred> C++20)
class filter_view


: public ranges::view_interface<filter_view<V, Pred>>
namespace views {
(since
inline constexpr /* unspecified */ filter = /* unspecified */; (2) C++20)


}
Call signature
template< ranges::viewable_range R, class Pred >
(since
requires /* see below */ C++20)


constexpr ranges::view auto filter( R&& r, Pred&& pred );
template< class Pred > (since
constexpr /* range adaptor closure */ filter( Pred&& pred ); C++20)


1) A range adaptor that represents view of an underlying sequence without the
elements that fail to satisfy a predicate.
2) RangeAdaptorObject. The expression views::filter(e, p) is expression-equivalent
to filter_view(e, p) for any suitable subexpressions e and p.


filter_view models the concepts bidirectional_range, forward_range, input_range, and
common_range when the underlying view V models respective concepts.

Member functions


constructor constructs a filter_view
(C++20) (public member function)
base returns the underlying view V
(C++20) (public member function)
pred returns a reference to the predicate stored within filter_view
(C++20) (public member function)
begin returns the beginning iterator of the filter_view
(C++20) (public member function)
end returns the sentinel of the filter_view
(C++20) (public member function)
Inherited from std::ranges::view_interface
empty returns whether the derived view is empty. Provided if it satisfies
(C++20) sized_range or forward_range.
(public member function of std::ranges::view_interface<D>)
cbegin returns a constant iterator to the beginning of the range.
(C++23) (public member function of std::ranges::view_interface<D>)
cend returns a sentinel for the constant iterator of the range.
(C++23) (public member function of std::ranges::view_interface<D>)
operator bool returns whether the derived view is not empty. Provided if
(C++20) ranges::empty is applicable to it.
(public member function of std::ranges::view_interface<D>)
front returns the first element in the derived view. Provided if it
(C++20) satisfies forward_range.
(public member function of std::ranges::view_interface<D>)
back returns the last element in the derived view. Provided if it satisfies
(C++20) bidirectional_range and common_range.
(public member function of std::ranges::view_interface<D>)

std::ranges::filter_view::filter_view


filter_view() requires std::default_initializable<V> && (1) (since C++20)
std::default_initializable<Pred> = default;
constexpr explicit filter_view( V base, Pred pred ); (2) (since C++20)


1) Value-initializes base_ via its default member initializer (= V()) and
default-initializes pred_ (which value-initializes the contained Pred).
2) Initializes base_ with std::move(base) and initializes pred_ with
std::move(pred).

Parameters


base - range to filter
pred - predicate to filter out elements

std::ranges::filter_view::base


constexpr V base() const& requires std::copy_constructible<V>; (1) (since C++20)
constexpr V base() &&; (2) (since C++20)


1) Equivalent to return base_;.
2) Equivalent to return std::move(base_);.

std::ranges::filter_view::pred


constexpr const Pred& pred() const; (since C++20)


Returns a reference to the contained Pred object. The behavior is undefined if pred_
does not contain a value.

std::ranges::filter_view::begin


constexpr /* iterator */ begin(); (exposition only*)


In order to provide the amortized constant time complexity required by the range
concept, this function caches the result within the filter_view object for use on
subsequent calls. Equivalent to


if constexpr (!ranges::forward_range<V>)
return /* iterator */{*this, ranges::find_if(base_, std::ref(*pred_))};
else
{
if (!begin_.has_value())
begin_ = ranges::find_if(base_, std::ref(*pred_)); // caching
return /* iterator */{*this, begin_.value())};
}


The behavior is undefined if pred_ does not contain a value.

std::ranges::filter_view::end


constexpr auto end(); (since C++20)


Returns an iterator to the end. Equivalent to


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


Deduction guides


template< class R, class Pred > (since C++20)
filter_view( R&&, Pred ) -> filter_view<views::all_t<R>, Pred>;


Nested classes


iterator the iterator type of filter_view
(C++20) (exposition-only member class*)
sentinel the sentinel type of filter_view when the underlying view is not a
(C++20) common_range
(exposition-only member class*)

Example

// Run this code


#include <iostream>
#include <ranges>


int main()
{
auto even = [](int i) { return 0 == i % 2; };
auto square = [](int i) { return i * i; };


for (int i : std::views::iota(0, 6)
| std::views::filter(even)
| std::views::transform(square))
std::cout << i << ' ';
std::cout << '\n';
}

Output:


0 4 16


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 3714 C++20 the multi-parameter constructor was made explicit
(P2711R1) not explicit
if Pred is not default_initializable,
P2325R3 C++20 the default constructor the filter_view is also
constructs a filter_view which does not default_initializable
not contain a Pred

See also


ranges::take_while_view a view consisting of the initial elements of another view,
views::take_while until the first element on which a predicate returns false
(C++20) (class template) (range adaptor object)

2024.06.10 http://cppreference.com