std::ranges::view::filter,std::ranges::filter_view (3) Linux Manual Page
std::ranges::view::filter,std::ranges::filter_view – std::ranges::view::filter,std::ranges::filter_view Synopsis template< InputRange V, IndirectUnaryPredicate<iterator_t<V>> Pred > requires View<V> && std::is_object_v<Pred> (1) (since C++20) class filter_view : public ranges::view_interface<filter_view<V, Pred>> namespace view { inline constexpr /*unspecified*/ filter = /*unspecified*/; (2) (since C++20) } 1) A range adaptor that represents View of an underlying sequence without the elements that fail to satisfy a…
