MCPcopy Index your code
hub / github.com/clojure/clojure / getElementType

Method getElementType

src/jvm/clojure/asm/Type.java:481–484  ·  view source on GitHub ↗

Returns the type of the elements of this array type. This method should only be used for an array type. @return Returns the type of the elements of this array type.

()

Source from the content-addressed store, hash-verified

479 * @return Returns the type of the elements of this array type.
480 */
481 public Type getElementType() {
482 final int numDimensions = getDimensions();
483 return getType(valueBuffer, valueBegin + numDimensions, valueEnd);
484 }
485
486 /**
487 * Returns the binary name of the class corresponding to this type. This method must not be used

Callers 1

getClassNameMethod · 0.95

Calls 2

getDimensionsMethod · 0.95
getTypeMethod · 0.95

Tested by

no test coverage detected