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

Method invokeLOB

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

Source from the content-addressed store, hash-verified

472 }
473
474 public static byte invokeLOB(IFn f0, long a, Object b) {
475 if(f0 instanceof IFn.LOL) {
476 return RT.byteCast(((IFn.LOL)f0).invokePrim(a, b));
477 } else {
478 return RT.byteCast(f0.invoke(a, b));
479 }
480 }
481
482 public static byte invokeOLB(IFn f0, Object a, long b) {
483 if(f0 instanceof IFn.OLL) {

Callers

nothing calls this directly

Calls 3

byteCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected