diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/boot.clj | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/boot.clj b/src/boot.clj index 5eaa62fc..3a919952 100644 --- a/src/boot.clj +++ b/src/boot.clj @@ -2076,3 +2076,7 @@ special-symbol? [s] var? [v] (instance? clojure.lang.Var v)) +(defn + #^{:doc "Returns the Class of x"} +class [#^Object x] + (. x (getClass)))
\ No newline at end of file |