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

Method invokeLOD

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

Source from the content-addressed store, hash-verified

544 }
545
546 public static double invokeLOD(IFn f0, long a, Object b) {
547 if(f0 instanceof IFn.LOD) {
548 return ((IFn.LOD)f0).invokePrim(a, b);
549 } else {
550 return RT.doubleCast(f0.invoke(a, b));
551 }
552 }
553
554 public static double invokeOLD(IFn f0, Object a, long b) {
555 if(f0 instanceof IFn.OLD) {

Callers

nothing calls this directly

Calls 3

doubleCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected