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

Method invokeLF

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

Source from the content-addressed store, hash-verified

204 }
205
206 public static float invokeLF(IFn f0, long a) {
207 if(f0 instanceof IFn.LD) {
208 return RT.floatCast(((IFn.LD)f0).invokePrim(a));
209 } else {
210 return RT.floatCast(f0.invoke(a));
211 }
212 }
213
214 public static float invokeDF(IFn f0, double a) {
215 if(f0 instanceof IFn.DD) {

Callers

nothing calls this directly

Calls 3

floatCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected