Field Access
36Returns a clone of the Java array. Works on arrays of known types.
functionclojure.core
Returns the value at the index/indices. Works on Java arrays of all types.
functionclojure.core
Returns the length of the Java array. Works on arrays of all types.
functionclojure.core
Maps an expression across an array a, using an index named idx, and return value named ret, initialized to a clone of ...
macroclojure.core
Reduces an expression across an array a, using an index named idx, and return value named ret, initialized to init, se...
macroclojure.core
Sets the value at the index/indices. Works on Java arrays of reference types. Returns val.
functionclojure.core
Sets the value at the index/indices. Works on arrays of boolean. Returns val.
functionclojure.core
Sets the value at the index/indices. Works on arrays of byte. Returns val.
functionclojure.core
Sets the value at the index/indices. Works on arrays of char. Returns val.
functionclojure.core
Sets the value at the index/indices. Works on arrays of double. Returns val.
functionclojure.core
Sets the value at the index/indices. Works on arrays of float. Returns val.
functionclojure.core
Sets the value at the index/indices. Works on arrays of int. Returns val.
functionclojure.core
Sets the value at the index/indices. Works on arrays of long. Returns val.
functionclojure.core
Sets the value at the index/indices. Works on arrays of short. Returns val.
functionclojure.core
Creates an array of booleans
functionclojure.core
Casts to boolean[]
functionclojure.core
Creates an array of bytes
functionclojure.core
Casts to bytes[]
functionclojure.core
Creates an array of chars
functionclojure.core
Casts to chars[]
functionclojure.core
Creates an array of doubles
functionclojure.core
Casts to double[]
functionclojure.core
Creates an array of floats
functionclojure.core
Casts to float[]
functionclojure.core
Creates an array of ints
functionclojure.core
Returns an array with components set to the values in aseq. The array's component type is type if provided, or the typ...
functionclojure.core
Casts to int[]
functionclojure.core
Creates an array of longs
functionclojure.core
Casts to long[]
functionclojure.core
Creates and returns an array of instances of the specified class of the specified dimension(s). Note that a class obj...
functionclojure.core
Creates an array of objects
functionclojure.core
Assigns a new value to a var or field.
special-formclojure.core
Creates an array of shorts
functionclojure.core
Casts to shorts[]
functionclojure.core
Returns an array of Objects containing the contents of coll, which can be any Collection. Maps to java.util.Collectio...
functionclojure.core
Returns a (potentially-ragged) 2-dimensional array of Objects containing the contents of coll, which can be any Collec...
functionclojure.core