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

Method invoke

src/jvm/clojure/lang/RestFn.java:396–405  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

394}
395
396public Object invoke() {
397 switch(getRequiredArity())
398 {
399 case 0:
400 return doInvoke(null);
401 default:
402 return throwArity(0);
403 }
404
405}
406
407public Object invoke(Object arg1) {
408 switch(getRequiredArity())

Callers

nothing calls this directly

Calls 6

getRequiredArityMethod · 0.95
doInvokeMethod · 0.95
createMethod · 0.95
ret1Method · 0.95
ontoArrayPrependMethod · 0.95
throwArityMethod · 0.45

Tested by

no test coverage detected