Struct rs_graph::wrapped::WrappedBuilder [] [src]

pub struct WrappedBuilder<G, B>(_, _)
where
    G: WrappedGraph
;

A builder for a wrapped graph.

Trait Implementations

impl<G, B> Builder for WrappedBuilder<G, B> where
    G: WrappedGraph,
    B: Builder<Graph = G::Graph>, 
[src]

The graph type produced by this builder.

The type of a nodes.

The type of an edge.

Create a new, empty builder.

Create a new, empty builder. Read more

Reserve memory for a certain number of nodes and edges.

Add a new node.

Add n new nodes.

Add a new edge.

Return a unique id of a node.

Return a unique id of an edge.

Turn the builder into a graph.