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

Method invokeDD

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

Source from the content-addressed store, hash-verified

188 }
189
190 public static double invokeDD(IFn f0, double a) {
191 if(f0 instanceof IFn.DD) {
192 return ((IFn.DD)f0).invokePrim(a);
193 } else {
194 return RT.doubleCast(f0.invoke(a));
195 }
196 }
197
198 public static double invokeOD(IFn f0, Object a) {
199 if(f0 instanceof IFn.OD) {

Callers

nothing calls this directly

Calls 3

doubleCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected