Get-Sxml-Items

(get-sxml-items <list>) -> list

Returns a list of items contained in the given sxml value; akin to nested XML items.

Example:

>> (get-sxml-items '(test (a . "test") (a . "foo") (b . "alpha")))
:: ((a . "test") (a . "foo") (b . "alpha"))

See Also: s-xml, SXML Example