XMLTools
IsTree
determine if an expression is an XML tree data structure
Calling Sequence
Parameters
Description
Examples
IsTree(expr)
expr
-
anything; expression to test
The IsTree(expr) command tests whether a Maple expression expr is an XML tree data structure. If expr is an XML tree data structure, the value true is returned. Otherwise, false is returned.
Note: A full recursive traversal of the input is performed, so this is an extremely expensive test.
with⁡XMLTools:
IsTree⁡XMLElement⁡a,b=c,d,XMLElement⁡foo,colour=red,bar
true
See Also
XMLTools[XMLElement]
Download Help Document