find

functionsince v0.0-927 clojure.core/findEdit
(find coll k)

Details:

Returns the map entry for key k, or nil if k is not found.


See Also:


Source docstring:
Returns the map entry for key, or nil if key not present.
Source code @ clojurescript:src/main/cljs/cljs/core.cljs
(defn find
  [coll k]
  (if (ifind? coll)
    (-find coll k)
    (when (and (not (nil? coll))
            (associative? coll)
            (contains? coll k))
      (MapEntry. k (get coll k) nil))))