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

Method invokeOOD

src/jvm/clojure/lang/FnInvokers.java:586–592  ·  view source on GitHub ↗
(IFn f0, Object a, Object b)

Source from the content-addressed store, hash-verified

584 }
585
586 public static double invokeOOD(IFn f0, Object a, Object b) {
587 if(f0 instanceof IFn.OOD) {
588 return ((IFn.OOD)f0).invokePrim(a, b);
589 } else {
590 return RT.doubleCast(f0.invoke(a, b));
591 }
592 }
593
594 public static double invokeODD(IFn f0, Object a, double b) {
595 if(f0 instanceof IFn.ODD) {

Callers

nothing calls this directly

Calls 3

doubleCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected