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

Method invokeStaticMethodVariadic

src/jvm/clojure/lang/Reflector.java:347–350  ·  view source on GitHub ↗
(String className, String methodName, Object... args)

Source from the content-addressed store, hash-verified

345}
346
347public static Object invokeStaticMethodVariadic(String className, String methodName, Object... args) {
348 return invokeStaticMethod(className, methodName, args);
349
350}
351
352public static Object invokeStaticMethod(String className, String methodName, Object[] args) {
353 Class c = RT.classForName(className);

Callers

nothing calls this directly

Calls 1

invokeStaticMethodMethod · 0.95

Tested by

no test coverage detected