definition:
|
writeGraphSvgs :: FilePath -> Int -> [XmlExp] -> IO ()
writeGraphSvgs _ _ [] = return ()
writeGraphSvgs file index (svg:svgs) = do
writeXmlFile (file ++ (show index) ++ ".svg") svg
writeGraphSvgs file (index + 1) svgs
|
demand:
|
argument 3
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Write a list of svgs and append indexes to them
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,{[]}) |-> _ || (_,_,{:}) |-> _}
|
name:
|
writeGraphSvgs
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
String -> Prelude.Int -> [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
|