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

Method invokeOOB

src/jvm/clojure/lang/FnInvokers.java:514–520  ·  view source on GitHub ↗
(IFn f0, Object a, Object b)

Source from the content-addressed store, hash-verified

512 }
513
514 public static byte invokeOOB(IFn f0, Object a, Object b) {
515 if(f0 instanceof IFn.OOL) {
516 return RT.byteCast(((IFn.OOL)f0).invokePrim(a, b));
517 } else {
518 return RT.byteCast(f0.invoke(a, b));
519 }
520 }
521
522 public static byte invokeODB(IFn f0, Object a, double b) {
523 if(f0 instanceof IFn.ODL) {

Callers

nothing calls this directly

Calls 3

byteCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected