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

Method invokeDLS

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

Source from the content-addressed store, hash-verified

432 }
433
434 public static short invokeDLS(IFn f0, double a, long b) {
435 if(f0 instanceof IFn.DLL) {
436 return RT.shortCast(((IFn.DLL)f0).invokePrim(a, b));
437 } else {
438 return RT.shortCast(f0.invoke(a, b));
439 }
440 }
441
442 public static short invokeOOS(IFn f0, Object a, Object b) {
443 if(f0 instanceof IFn.OOL) {

Callers

nothing calls this directly

Calls 3

shortCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected