Clearer names for arguments that are functions.

This commit is contained in:
Thomas Athorne 2016-04-18 16:21:33 +00:00
parent 39b08bd9d5
commit 1ddd8c22f6

View file

@ -270,11 +270,11 @@
(next-fn (afn structure))
))
(defpath parser [parse unparse]
(defpath parser [parse-fn unparse-fn]
(select* [this structure next-fn]
(next-fn (parse structure)))
(next-fn (parse-fn structure)))
(transform* [this structure next-fn]
(unparse (next-fn (parse structure)))
(unparse-fn (next-fn (parse-fn structure)))
))
(defn selected?