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

Method invokeOOI

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

Source from the content-addressed store, hash-verified

368 }
369
370 public static int invokeOOI(IFn f0, Object a, Object b) {
371 if(f0 instanceof IFn.OOL) {
372 return RT.intCast(((IFn.OOL)f0).invokePrim(a, b));
373 } else {
374 return RT.intCast(f0.invoke(a, b));
375 }
376 }
377
378 public static int invokeODI(IFn f0, Object a, double b) {
379 if(f0 instanceof IFn.ODL) {

Callers

nothing calls this directly

Calls 3

intCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected