definition: |
textOf :: [XmlExp] -> String textOf = unwords . filter (not . null) . map textOfXmlExp where textOfXmlExp (XText s) = s textOfXmlExp (XElem _ _ xs) = textOf xs |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
--- Extracts the textual contents of a list of XML expressions. --- Useful auxiliary function when transforming XML expressions into --- other data structures. --- --- For instance, --- <code>textOf [XText "xy", XElem "a" [] [], XText "bc"] == "xy bc"</code> |
failfree: |
() |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{() |-> {.._#lambda508}} |
name: |
textOf |
precedence: |
no precedence defined |
result-values: |
{.._#lambda508} |
signature: |
[XmlExp] -> String |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |