Implementation detail for a propagate range adaptor object with a default execution policy. More...
#include <propagate.hpp>
Public Member Functions | |
template<class Range , class StateSamplingFunction , std::enable_if_t< ranges::range< Range >, int > = 0> | |
constexpr auto | operator() (Range &&range, StateSamplingFunction fn) const -> Range & |
Overload that defines a default execution policy. More... | |
template<class StateSamplingFunction > | |
constexpr auto | operator() (StateSamplingFunction fn) const |
Overload that returns a view closure to compose with other views. More... | |
![]() | |
template<class ExecutionPolicy , class Range , class StateSamplingFunction , std::enable_if_t< std::is_execution_policy_v< std::decay_t< ExecutionPolicy >>, int > = 0, std::enable_if_t< ranges::range< Range >, int > = 0> | |
constexpr auto | operator() (ExecutionPolicy &&policy, Range &range, StateSamplingFunction fn) const -> Range & |
Overload that implements the propagate algorithm. More... | |
template<class ExecutionPolicy , class StateSamplingFunction , std::enable_if_t< std::is_execution_policy_v< ExecutionPolicy >, int > = 0> | |
constexpr auto | operator() (ExecutionPolicy policy, StateSamplingFunction fn) const |
Overload that returns a view closure to compose with other views. More... | |
template<class Range , class StateSamplingFunction , class ExecutionPolicy , std::enable_if_t< ranges::range< Range >, int > = 0, std::enable_if_t< std::is_execution_policy_v< ExecutionPolicy >, int > = 0> | |
constexpr auto | operator() (Range &&range, StateSamplingFunction fn, ExecutionPolicy policy) const -> Range & |
Overload that re-orders arguments from a view closure. More... | |
Implementation detail for a propagate range adaptor object with a default execution policy.
Definition at line 103 of file propagate.hpp.
|
inlineconstexpr |
Overload that defines a default execution policy.
Definition at line 111 of file propagate.hpp.
|
inlineconstexpr |
Overload that returns a view closure to compose with other views.
Definition at line 117 of file propagate.hpp.