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

Method invokeLDS

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

Source from the content-addressed store, hash-verified

424 }
425
426 public static short invokeLDS(IFn f0, long a, double b) {
427 if(f0 instanceof IFn.LDL) {
428 return RT.shortCast(((IFn.LDL)f0).invokePrim(a, b));
429 } else {
430 return RT.shortCast(f0.invoke(a, b));
431 }
432 }
433
434 public static short invokeDLS(IFn f0, double a, long b) {
435 if(f0 instanceof IFn.DLL) {

Callers

nothing calls this directly

Calls 3

shortCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected