user=> (def f (future (inc 0))) #'user/f user=> (future? f) true user=> (future? 1) false
Takes a body of expressions and yields a future object that will in
(defn future? "Returns true if x is a future" {:added "1.1" :static true} [x] (instance? java.util.concurrent.Future x))
Comments top
No comments for future?. Log in to add a comment.