Expand description
Graph builder — fluent API for constructing a graph.
Structs§
- Graph
- A graph under construction. Generic over the state type
S. Convert to an executable [CompiledGraph] via.compile(). - Linear
Builder - Builder for the special-case linear graph: each stage feeds the next, no branching, no loops. Sugar over the full Graph<()> builder.