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

Method invokeDLI

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

Source from the content-addressed store, hash-verified

360 }
361
362 public static int invokeDLI(IFn f0, double a, long b) {
363 if(f0 instanceof IFn.DLL) {
364 return RT.intCast(((IFn.DLL)f0).invokePrim(a, b));
365 } else {
366 return RT.intCast(f0.invoke(a, b));
367 }
368 }
369
370 public static int invokeOOI(IFn f0, Object a, Object b) {
371 if(f0 instanceof IFn.OOL) {

Callers

nothing calls this directly

Calls 3

intCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected