让我们看看clojure.string/includes?
说它做什么以及它的实现方式。
user=> (doc clojure.string/includes?)
-------------------------
clojure.string/includes?
([s substr])
True if s includes substr.
nil
user=> (source clojure.string/includes?)
(defn includes?
"True if s includes substr."
{:added "1.8"}
[^CharSequence s ^CharSequence substr]
(.contains (.toString s) substr))
nil
user=> (.toString (map :name [{:name "One"} {:name "Two"}]))
"clojure.lang.LazySeq@26e067"
user=> (.toString ["One" "Two"])
"[\"One\" \"Two\"]"
user=>
我们看到它假设其第一个参数是一个字符串——或者说更具体的是CharSequence
,并且它一开始就调用该参数的.toString
方法。
我们看到(.toString (map .. ..))
会产生一个看起来很神秘的字符串,但这是因为map
生成了一个惰性序列,惰性序列的默认字符串表示形式是它的类型和十六进制值,就像任何没有特定字符串表示的Java对象一样。
然而,对引号列表或向量调用 .toString
将产生列表或向量元素的字符串表示。
因此,在后者中,clojure.string/includes?
“有效”,即使你没有传递 CharSequence
,当它将数据结构转换为字符串时,它包括了你要查找的名称。
由于你想要检查序列中的任何元素是否包含该字符串,这里你可能想要的可能是
(some #(clojure.string/includes? % "Joni") (map :name (mapify ..)))