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

Method invokeOOL

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

Source from the content-addressed store, hash-verified

296 }
297
298 public static long invokeOOL(IFn f0, Object a, Object b) {
299 if(f0 instanceof IFn.OOL) {
300 return ((IFn.OOL)f0).invokePrim(a, b);
301 } else {
302 return RT.longCast(f0.invoke(a, b));
303 }
304 }
305
306 public static long invokeODL(IFn f0, Object a, double b) {
307 if(f0 instanceof IFn.ODL) {

Callers

nothing calls this directly

Calls 3

longCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected