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

Method invokeF

src/jvm/clojure/lang/FnInvokers.java:74–80  ·  view source on GitHub ↗
(IFn f0)

Source from the content-addressed store, hash-verified

72 }
73
74 public static float invokeF(IFn f0) {
75 if(f0 instanceof IFn.D) {
76 return RT.floatCast(((IFn.D)f0).invokePrim());
77 } else {
78 return RT.floatCast(f0.invoke());
79 }
80 }
81
82 public static Object invokeO(IFn f0) {
83 return f0.invoke();

Callers

nothing calls this directly

Calls 3

floatCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected