We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 721499a commit a9f3072Copy full SHA for a9f3072
CHANGELOG.md
@@ -2,9 +2,7 @@
2
3
## Added
4
5
-## Fixed
6
-
7
-## Changed
+- docstring
8
9
# 0.1.1 (2024-08-23 / fd53a2b)
10
src/lambdaisland/xml_select.clj
@@ -47,7 +47,9 @@
47
[el]
48
(mapcat #(select (rest selector) %) (:content el)))))
49
50
-(defn select [selector root]
+(defn select
51
+ "Select nodes in a clojure.data.xml style data structure, based on a selector."
52
+ [selector root]
53
(seq
54
(cond
55
(empty? selector)
0 commit comments