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

Method invokeLDI

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

Source from the content-addressed store, hash-verified

352 }
353
354 public static int invokeLDI(IFn f0, long a, double b) {
355 if(f0 instanceof IFn.LDL) {
356 return RT.intCast(((IFn.LDL)f0).invokePrim(a, b));
357 } else {
358 return RT.intCast(f0.invoke(a, b));
359 }
360 }
361
362 public static int invokeDLI(IFn f0, double a, long b) {
363 if(f0 instanceof IFn.DLL) {

Callers

nothing calls this directly

Calls 3

intCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected