由:nberger 评论
bq. 我们讨论了也许将 nil 作为 {{collect}} 中不标记的标志,但我并不特别喜欢这个想法。
也许我们可以使用命名空间关键字来表示应忽略标签?例如 {{clojure.test.check.stats/ignore}}。这样我们就可以通过在 pred 不匹配时返回 {{stats/ignore}} 的函数,轻松地将 {{classify}} 实现为 {{collect}}。
`
(defn collect
[prop label-fn]
(gen/fmap
(fn [{:keys [args] :as result-map}]
(let [label (apply label-fn args)]
(if (= ::ignore label)
result-map
(update result-map :labels conj label))))
prop))
(defn classify
[prop pred label]
(collect prop (fn [& args]
(if (apply pred args)
label
::ignore))))
`
另一个选项可能是向 {{collect}} 添加一个额外的参数,以接收一个关于是否应将 nil 视为标签或忽略它的标志。我更喜欢 {{:stats/ignore}}。