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

Method invokeDLD

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

Source from the content-addressed store, hash-verified

576 }
577
578 public static double invokeDLD(IFn f0, double a, long b) {
579 if(f0 instanceof IFn.DLD) {
580 return ((IFn.DLD)f0).invokePrim(a, b);
581 } else {
582 return RT.doubleCast(f0.invoke(a, b));
583 }
584 }
585
586 public static double invokeOOD(IFn f0, Object a, Object b) {
587 if(f0 instanceof IFn.OOD) {

Callers

nothing calls this directly

Calls 3

doubleCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected