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

Method invokeLDL

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

Source from the content-addressed store, hash-verified

280 }
281
282 public static long invokeLDL(IFn f0, long a, double b) {
283 if(f0 instanceof IFn.LDL) {
284 return ((IFn.LDL)f0).invokePrim(a, b);
285 } else {
286 return RT.longCast(f0.invoke(a, b));
287 }
288 }
289
290 public static long invokeDLL(IFn f0, double a, long b) {
291 if(f0 instanceof IFn.DLL) {

Callers

nothing calls this directly

Calls 3

longCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected