definition:
|
writeNarrowingTree :: (f -> String) -> NarrowingTree f -> String -> IO ()
writeNarrowingTree s ng fn = writeFile fn (dotifyNarrowingTree s ng)
|
demand:
|
argument 3
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Writes the graphical representation of a narrowing 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:
|
writeNarrowingTree
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
(a -> String) -> NarrowingTree 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
|