user=> (char? \a) true user=> (char? 22) false user=> (char? "a") false user=> (char? (first "abc")) true
Coerce to char
(def ^{:arglists '([x]) :doc "Return true if x is a Character" :added "1.0" :static true} char? (fn ^:static char? [x] (instance? Character x)))
Comments top
No comments for char?. Log in to add a comment.