std::ranges::take_while_view<V,Pred>::pred

From cppreference.com
 
 
Ranges library
Range access
Range conversions
(C++23)
Range primitives



Dangling iterator handling
Range concepts
Views

Range factories
Range adaptors
Range generators
Range adaptor objects
Range adaptor closure objects
Helper items
(until C++23)(C++23)


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

Returns a reference to the stored predicate.

If *this does not store a predicate (e.g. an exception is thrown on the assignment to *this, which copy-constructs or move-constructs a Pred), the behavior is undefined.

Parameters

(none)

Return value

a reference to the stored predicate

Example