user=> (float? 0) false user=> (float? 0.0) true
(defn float? "Returns true if n is a floating point number" {:added "1.0"} [n] (or (instance? Double n) (instance? Float n)))
Comments top
No comments for float?. Log in to add a comment.