<node> ( id -- node )
Graphviz ยป Graphviz data structures

Prev:<cluster> ( id -- subgraph )
Next:<edge> ( tail head -- edge )


Vocabulary
graphviz

Inputs
idan object


Outputs
nodea node


Word description
Constructs a node with the given id, which must be an object supported by the present word.

Examples
USING: graphviz prettyprint ; "foo" <node> .
T{ node { id "foo" } }


USING: accessors graphviz prettyprint ; 0 <node> id>> .
"0"


See also
node

Definition