definition:
|
xmlGraphs2Svgs :: Bool -> DrawMode -> FilePath -> XmlExp -> IO ()
xmlGraphs2Svgs labelNID draw outFile xmlGraph = do
let graphs = readXmlGraphList labelNID xmlGraph
let svgs = map draw graphs
writeGraphSvgs outFile 0 svgs
|
demand:
|
argument 4
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Convert a xml graphlist to svgs for each graph and write them
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_,_) |-> _}
|
name:
|
xmlGraphs2Svgs
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Prelude.Bool -> (([Node], [(Prelude.Int, Prelude.Int)], Prelude.Int)
-> XML.XmlExp) -> String -> XML.XmlExp -> Prelude.IO ()
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|