(abstract? class)
returns true
if class
is an abstract class
(abstract? java.util.Map) => true
(abstract? Class) => false
returns `true` if `class` is an abstract class (abstract? java.util.Map) => true (abstract? Class) => false
(array-component cls)
returns the array element within the array
(array-component (type (int-array 0))) => Integer/TYPE
(array-component (type (into-array [1 2 3]))) => java.lang.Long
returns the array element within the array (array-component (type (int-array 0))) => Integer/TYPE (array-component (type (into-array [1 2 3]))) => java.lang.Long
(array? cls)
checks if a class is an array class
(array? (type (int-array 0))) => true
checks if a class is an array class (array? (type (int-array 0))) => true
(interface? class)
returns true
if class
is an interface
(interface? java.util.Map) => true
(interface? Class) => false
returns `true` if `class` is an interface (interface? java.util.Map) => true (interface? Class) => false
(primitive-array? cls)
checks if class is a primitive array
(primitive-array? (type (int-array 0))) => true
(primitive-array? (type (into-array [1 2 3]))) => false
checks if class is a primitive array (primitive-array? (type (int-array 0))) => true (primitive-array? (type (into-array [1 2 3]))) => false
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close