CurryInfo: xmldata-3.0.0 / Data2Xml.mkXml2ConsDecl

definition:
mkXml2ConsDecl :: [Option] -> [CPattern] -> CConsDecl -> CRule
mkXml2ConsDecl opts patVars (CCons name _ args)
  = simpleRule (newPatVars++[pxml opts (tagNameForCons name) [] (pVars arity)])
               (applyF name (map callXml2 (zip args [0..])))
  where
   arity = length args
   newPatVars = renameUnused (map renVar $ concatMap tvarsOfType args) patVars
mkXml2ConsDecl _ _ (CRecord _ _ _)
  = error "Data2Xml.mkXml2ConsDecl: CRecord not yet implemented!"
demand:
argument 3
deterministic:
deterministic operation
failfree:
(_, _, _)
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_,_,{CCons}) |-> {CRule}}
name:
mkXml2ConsDecl
precedence:
no precedence defined
result-values:
{CRule}
signature:
[Option] -> [AbstractCurry.Types.CPattern] -> AbstractCurry.Types.CConsDecl
-> AbstractCurry.Types.CRule
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term