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

Method invokeOLD

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

Source from the content-addressed store, hash-verified

552 }
553
554 public static double invokeOLD(IFn f0, Object a, long b) {
555 if(f0 instanceof IFn.OLD) {
556 return ((IFn.OLD)f0).invokePrim(a, b);
557 } else {
558 return RT.doubleCast(f0.invoke(a, b));
559 }
560 }
561
562 public static double invokeDDD(IFn f0, double a, double b) {
563 if(f0 instanceof IFn.DDD) {

Callers

nothing calls this directly

Calls 3

doubleCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected