=nojustify ( graphviz-obj val -- graphviz-obj' )


Vocabulary
graphviz.notation

Definition
IN: graphviz.notation

GENERIC# =nojustify 1 ( graphviz-obj val -- graphviz-obj' )


Methods
USING: accessors graphviz.attributes graphviz.notation present
;

M: edge-attributes =nojustify present >>nojustify ;


USING: accessors graphviz graphviz.notation kernel present ;

M: edge =nojustify present over attributes>> nojustify<< ;


USING: accessors graphviz.attributes graphviz.notation present
;

M: graph-attributes =nojustify present >>nojustify ;


USING: accessors graphviz graphviz.attributes graphviz.notation
kernel present ;

M: graph =nojustify
<graph-attributes> swap present >>nojustify add ;


USING: accessors graphviz.attributes graphviz.notation present
;

M: node-attributes =nojustify present >>nojustify ;


USING: accessors graphviz graphviz.notation kernel present ;

M: node =nojustify present over attributes>> nojustify<< ;


USING: accessors graphviz graphviz.attributes graphviz.notation
kernel present ;

M: subgraph =nojustify
<graph-attributes> swap present >>nojustify add ;