Template Function ripple::execute_until¶
Defined in File executor.hpp
Function Documentation¶
-
template<typename
Pred
, typename ...Args
>
autoripple
::
execute_until
(Graph &graph, Pred &&pred, Args&&... args) noexcept -> void¶ Executes a graph until the preduces returns false.
Executes the graph until the predicate returns false.
- Parameters
graph
: The graph to execute.pred
: The predicate which returns true if the graph must execute.args
: Arguments for the predicate.
- Template Parameters
Pred
: The type of the predicate.Args
: The type of the arguments.