Clearer names for arguments that are functions.
This commit is contained in:
parent
39b08bd9d5
commit
1ddd8c22f6
1 changed files with 3 additions and 3 deletions
|
|
@ -270,11 +270,11 @@
|
||||||
(next-fn (afn structure))
|
(next-fn (afn structure))
|
||||||
))
|
))
|
||||||
|
|
||||||
(defpath parser [parse unparse]
|
(defpath parser [parse-fn unparse-fn]
|
||||||
(select* [this structure next-fn]
|
(select* [this structure next-fn]
|
||||||
(next-fn (parse structure)))
|
(next-fn (parse-fn structure)))
|
||||||
(transform* [this structure next-fn]
|
(transform* [this structure next-fn]
|
||||||
(unparse (next-fn (parse structure)))
|
(unparse-fn (next-fn (parse-fn structure)))
|
||||||
))
|
))
|
||||||
|
|
||||||
(defn selected?
|
(defn selected?
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue