definition:
|
writeDefTree :: (f -> String) -> DefTree f -> String -> IO ()
writeDefTree s dt fn = writeFile fn (dotifyDefTree s dt)
|
demand:
|
argument 3
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Writes the graphical representation of a definitional tree with the
--- *DOT graph description language* to a file with the given filename.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_) |-> _}
|
name:
|
writeDefTree
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
(a -> String) -> DefTree a -> String -> Prelude.IO ()
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|