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

Method invokeOI

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

Source from the content-addressed store, hash-verified

124 }
125
126 public static int invokeOI(IFn f0, Object a) {
127 if(f0 instanceof IFn.OL) {
128 return RT.intCast(((IFn.OL)f0).invokePrim(a));
129 } else {
130 return RT.intCast(f0.invoke(a));
131 }
132 }
133
134 public static short invokeLS(IFn f0, long a) {
135 if(f0 instanceof IFn.LL) {

Callers

nothing calls this directly

Calls 3

intCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected