评论由:nberger
bq. 我们-talked about是不是把 nil 作为在 collect 中不进行标记的标志,但我并不特别赞同这个想法。
也许我们可以使用命名空间关键字来表示应忽略标签?比如 {{clojure.test.check.stats/ignore}}。这样我们就可以通过创建一个在 pred 不匹配时返回 {{stats/ignore}} 的函数,在 terms of collect 中简单地实现 {{classify}}
`
(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}}。