Handbook
Glossary
children-tags ( tag -- sequence )
Utilities for traversing XML
Prev:
children>string ( tag -- string )
Next:
first-child-tag ( tag -- child )
Vocabulary
xml
.
traversal
Inputs
tag
an XML tag or document
Outputs
sequence
a
sequence
Word description
Gets the children of the tag that are themselves tags.
See also
first-child-tag
Definition
USING:
accessors
sequences
xml.data
;
IN:
xml.traversal
:
children-tags
( tag -- sequence )
children>>
[
tag?
]
filter
;