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

Method invokeDL

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

Source from the content-addressed store, hash-verified

92 }
93
94 public static long invokeDL(IFn f0, double a) {
95 if(f0 instanceof IFn.DL) {
96 return ((IFn.DL)f0).invokePrim(a);
97 } else {
98 return RT.longCast(f0.invoke(a));
99 }
100 }
101
102 public static long invokeOL(IFn f0, Object a) {
103 if(f0 instanceof IFn.OL) {

Callers

nothing calls this directly

Calls 3

longCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected