clojure.set/project

functionsince v0.0-927 clojure.set/projectEdit
(project xrel ks)

Source docstring:
Returns a rel of the elements of xrel with only the keys in ks
Source code @ clojurescript:src/main/cljs/clojure/set.cljs
(defn project
  [xrel ks]
    (set (map #(select-keys % ks) xrel)))