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

Method invokeDDL

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

Source from the content-addressed store, hash-verified

272 }
273
274 public static long invokeDDL(IFn f0, double a, double b) {
275 if(f0 instanceof IFn.DDL) {
276 return ((IFn.DDL)f0).invokePrim(a, b);
277 } else {
278 return RT.longCast(f0.invoke(a, b));
279 }
280 }
281
282 public static long invokeLDL(IFn f0, long a, double b) {
283 if(f0 instanceof IFn.LDL) {

Callers

nothing calls this directly

Calls 3

longCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected