Shortcuts

Template Function ripple::execute_until

Function Documentation

template<typename Pred, typename ...Args>
auto ripple::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.

Docs

Access comprehensive developer documentation for Ripple

View Docs

Tutorials

Get tutorials to help with understand all features

View Tutorials

Examples

Find examples to help get started

View Examples