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

Method invokeOF

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

Source from the content-addressed store, hash-verified

220 }
221
222 public static float invokeOF(IFn f0, Object a) {
223 if(f0 instanceof IFn.OD) {
224 return RT.floatCast(((IFn.OD)f0).invokePrim(a));
225 } else {
226 return RT.floatCast(f0.invoke(a));
227 }
228 }
229
230 public static Object invokeLO(IFn f0, long a) {
231 if(f0 instanceof IFn.LO) {

Callers

nothing calls this directly

Calls 3

floatCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected