ClojureDocs

导航

命名空间

select

clojure.set

1.0 起提供
  • (select pred xset)
Returns a set of the elements for which pred is true
1 Example
(clojure.set/select odd? #{1 2 3})
;;=> #{1 3}
See Also

Returns a lazy sequence of the items in coll for which (pred item) returns logical true. pred must...

Added by alimoeeny

Returns a rel of the elements of xrel with only the keys in ks

Added by daveliepmann

When passed 2 rels, returns the rel corresponding to the natural join. When passed an additional k...

Added by daveliepmann
0 Notes
No notes for select