Handbook
Glossary
dot. ( obj -- )
Vocabulary
graphviz
.
dot
.
private
Inputs
obj
an
object
Outputs
None
Definition
IN:
graphviz.dot.private
GENERIC:
dot.
( obj -- )
Methods
USING:
graphviz.attributes
graphviz.dot.private
io
;
M:
edge-attributes
dot.
"edge"
write
attributes.
;
USING:
accessors
combinators
graphviz
graphviz.dot.private
io
kernel
namespaces
;
M:
edge
dot.
{
[
tail>>
dot.
]
[
drop
edgeop
get
write
]
[
head>>
dot.
]
[
attributes>>
attributes.
]
}
cleave
;
USING:
graphviz.attributes
graphviz.dot.private
io
;
M:
graph-attributes
dot.
"graph"
write
attributes.
;
USING:
graphviz
graphviz.dot.private
kernel
;
M:
graph
dot.
?strict
(di)graph
dup
id.
[
statements.
]
with-edgeop
;
USING:
graphviz.attributes
graphviz.dot.private
io
;
M:
node-attributes
dot.
"node"
write
attributes.
;
USING:
accessors
graphviz
graphviz.dot.private
kernel
;
M:
node
dot.
[
id.
]
[
attributes>>
attributes.
]
bi
;
USING:
graphviz.dot.private
io
sequences
;
M:
sequence
dot.
"{"
print
[
dot.
";"
print
]
each
"}"
print
;
USING:
formatting
graphviz.dot.private
strings
;
M:
string
dot.
quote-string
"%s "
printf
;
USING:
graphviz
graphviz.dot.private
io
kernel
;
M:
subgraph
dot.
"subgraph "
write
[
id.
]
[
statements.
]
bi
;