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

Method invokeDDI

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

Source from the content-addressed store, hash-verified

344 }
345
346 public static int invokeDDI(IFn f0, double a, double b) {
347 if(f0 instanceof IFn.DDL) {
348 return RT.intCast(((IFn.DDL)f0).invokePrim(a, b));
349 } else {
350 return RT.intCast(f0.invoke(a, b));
351 }
352 }
353
354 public static int invokeLDI(IFn f0, long a, double b) {
355 if(f0 instanceof IFn.LDL) {

Callers

nothing calls this directly

Calls 3

intCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected