store/[org.clojure/clojure "1.9.0"] clj::clojure.core/some?

Community Documentation

Edit

Arities

[x] -> Boolean

Docs

true if x is not nil, otherwise false.

Source

(defn some?
  "Returns true if x is not nil, false otherwise."
  {:tag Boolean
   :added "1.6"
   :static true}
  [x] (not (nil? x)))

Uses on crossclj