Liking cljdoc? Tell your friends :D

hara.core.base.class


abstract?clj

(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
raw docstring

array-componentclj

(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
raw docstring

array?clj

(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
raw docstring

interface?clj

(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
raw docstring

primitive-array?clj

(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
raw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close