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

Method invokeOLB

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

Source from the content-addressed store, hash-verified

480 }
481
482 public static byte invokeOLB(IFn f0, Object a, long b) {
483 if(f0 instanceof IFn.OLL) {
484 return RT.byteCast(((IFn.OLL)f0).invokePrim(a, b));
485 } else {
486 return RT.byteCast(f0.invoke(a, b));
487 }
488 }
489
490 public static byte invokeDDB(IFn f0, double a, double b) {
491 if(f0 instanceof IFn.DDL) {

Callers

nothing calls this directly

Calls 3

byteCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected