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

Method invokeOB

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

Source from the content-addressed store, hash-verified

172 }
173
174 public static byte invokeOB(IFn f0, Object a) {
175 if(f0 instanceof IFn.OL) {
176 return RT.byteCast(((IFn.OL)f0).invokePrim(a));
177 } else {
178 return RT.byteCast(f0.invoke(a));
179 }
180 }
181
182 public static double invokeLD(IFn f0, long a) {
183 if(f0 instanceof IFn.LD) {

Callers

nothing calls this directly

Calls 3

byteCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected