CurryInfo: icurry-3.2.0 / TermGraph.SVG.writeGraphSvgs

definition: Info
 
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: Info
 argument 3
deterministic: Info
 deterministic operation
documentation: Info
 
Write a list of svgs and append indexes to them
failfree: Info
 <FAILING>
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_,_,{[]}) |-> _ || (_,_,{:}) |-> _}
name: Info
 writeGraphSvgs
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 String -> Prelude.Int -> [XML.XmlExp] -> Prelude.IO ()
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 possibly non-terminating
totally-defined: Info
 possibly non-reducible on same data term