System for filtering trees and nodes generated by zip.clj in general, and xml trees in particular.
System for filtering trees and nodes generated by zip.clj in general, and xml trees in particular.
(ancestors loc)Returns a lazy sequence of all ancestors of location loc, starting with loc and proceeding to loc's parent node and on through to the root of the tree.
Returns a lazy sequence of all ancestors of location loc, starting with loc and proceeding to loc's parent node and on through to the root of the tree.
(children loc)Returns a lazy sequence of all immediate children of location loc, left-to-right.
Returns a lazy sequence of all immediate children of location loc, left-to-right.
(children-auto loc)Returns a lazy sequence of all immediate children of location loc, left-to-right, marked so that a following tag= predicate will auto-descend.
Returns a lazy sequence of all immediate children of location loc, left-to-right, marked so that a following tag= predicate will auto-descend.
(descendants loc)Returns a lazy sequence of all descendants of location loc, in depth-first order, left-to-right, starting with loc.
Returns a lazy sequence of all descendants of location loc, in depth-first order, left-to-right, starting with loc.
(left-locs loc)Returns a lazy sequence of locations to the left of loc, starting with loc.
Returns a lazy sequence of locations to the left of loc, starting with loc.
(leftmost? loc)Returns true if there are no more nodes to the left of location loc.
Returns true if there are no more nodes to the left of location loc.
(right-locs loc)Returns a lazy sequence of locations to the right of loc, starting with loc.
Returns a lazy sequence of locations to the right of loc, starting with loc.
(rightmost? loc)Returns true if there are no more nodes to the right of location loc.
Returns true if there are no more nodes to the right of location loc.
cljdoc builds & hosts documentation for Clojure/Script libraries
| Ctrl+k | Jump to recent docs |
| ← | Move to previous article |
| → | Move to next article |
| Ctrl+/ | Jump to the search field |