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

Method invokeOS

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

Source from the content-addressed store, hash-verified

148 }
149
150 public static short invokeOS(IFn f0, Object a) {
151 if(f0 instanceof IFn.OL) {
152 return RT.shortCast(((IFn.OL)f0).invokePrim(a));
153 } else {
154 return RT.shortCast(f0.invoke(a));
155 }
156 }
157
158 public static byte invokeLB(IFn f0, long a) {
159 if(f0 instanceof IFn.LL) {

Callers

nothing calls this directly

Calls 3

shortCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected