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

Method invokeLD

src/jvm/clojure/lang/FnInvokers.java:182–188  ·  view source on GitHub ↗
(IFn f0, long a)

Source from the content-addressed store, hash-verified

180 }
181
182 public static double invokeLD(IFn f0, long a) {
183 if(f0 instanceof IFn.LD) {
184 return ((IFn.LD)f0).invokePrim(a);
185 } else {
186 return RT.doubleCast(f0.invoke(a));
187 }
188 }
189
190 public static double invokeDD(IFn f0, double a) {
191 if(f0 instanceof IFn.DD) {

Callers

nothing calls this directly

Calls 3

doubleCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected