definition: |
showXmlDocWithParams :: [XmlDocParams] -> XmlExp -> String showXmlDocWithParams ps (XElem root attrL xmlEL) = "<?xml version=\"1.0\" " ++ (encoding2Attribute (lookupEncoding ps)) ++ "standalone=\"" ++ (if hasDtdUrl ps then "no" else "yes") ++ "\"?>\n\n" ++ (if hasDtdUrl ps then "<!DOCTYPE " ++ root ++ " SYSTEM \"" ++ lookupDtdUrl ps ++ "\">\n\n" else "") ++ showXmlExp 0 (encoding2EncFunc (lookupEncoding ps)) (XElem root attrL xmlEL) showXmlDocWithParams _ (XText _) = error "XML.showXmlDocWithParams: document without tags" |
demand: |
argument 2 |
deterministic: |
deterministic operation |
failfree: |
<FAILING> |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,{XElem}) |-> _} |
name: |
showXmlDocWithParams |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
[XmlDocParams] -> XmlExp -> String |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |