Clojure Spec中`&`和`和`有什么区别?

时间:2017-03-31 07:33:22

标签: clojure clojure.spec

我似乎很难分清Clojure Spec的&and运算符的含义。他们似乎都做了同样的事情,只有一个被注意为正则表达式运算符,差异我不确定我理解它的重要性。

1 个答案:

答案 0 :(得分:6)

如果我们从中抽取一些数据,我们可以看到两者之间的差异:

(ns playground
  (:require [clojure.spec     :as spec]
            [clojure.spec.gen :as gen]))

(gen/generate (spec/gen (spec/and #{:a :c} #{:b :a :c})))
=> :a
(gen/sample (spec/gen (spec/and #{:a :c} #{:b :a :c})))
=> (:c :a :c :a :a :a :a :a :a :c)

我们可以看到spec/and匹配与两个谓词#{:a :c}#{:b :a :c}匹配的单个匹配项。

(gen/generate (spec/gen (spec/& #{:a :c} #{:b :a :c})))
=> [:c]
(gen/sample (spec/gen (spec/& #{:a :c} #{:b :a :c})))
=> ([:c] [:a] [:a] [:c] [:c] [:c] [:c] [:a] [:c] [:c])
另一方面,

spec/&匹配谓词作为序列的一部分接受的内容。