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

Method invokeOD

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

Source from the content-addressed store, hash-verified

196 }
197
198 public static double invokeOD(IFn f0, Object a) {
199 if(f0 instanceof IFn.OD) {
200 return ((IFn.OD)f0).invokePrim(a);
201 } else {
202 return RT.doubleCast(f0.invoke(a));
203 }
204 }
205
206 public static float invokeLF(IFn f0, long a) {
207 if(f0 instanceof IFn.LD) {

Callers

nothing calls this directly

Calls 3

doubleCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected