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

Method invokeDB

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

Source from the content-addressed store, hash-verified

164 }
165
166 public static byte invokeDB(IFn f0, double a) {
167 if(f0 instanceof IFn.DL) {
168 return RT.byteCast(((IFn.DL)f0).invokePrim(a));
169 } else {
170 return RT.byteCast(f0.invoke(a));
171 }
172 }
173
174 public static byte invokeOB(IFn f0, Object a) {
175 if(f0 instanceof IFn.OL) {

Callers

nothing calls this directly

Calls 3

byteCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected