definition: |
toXmlName :: QName -> QName toXmlName (m,s) = case (isPrelude m, s, isTupleName s) of (True,"[]",_) -> (nm,"list_To_Xml") (True,"()",_) -> (nm,"unitToXml") (True,_,True) -> (nm,"tuple"++show (length s-1)++"ToXml") (_,c:cs,_) -> (nm,toLower c:cs ++ "ToXml") (_, [], _) -> error "Data2Xml.toXmlName: empty identifier" where nm = transModName m |
demand: |
argument 1 |
deterministic: |
deterministic operation |
failfree: |
_ |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{({(,)}) |-> {(,)}} |
name: |
toXmlName |
precedence: |
no precedence defined |
result-values: |
{(,)} |
signature: |
(String, String) -> (String, String) |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |