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

Method invokeS

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

Source from the content-addressed store, hash-verified

48 }
49
50 public static short invokeS(IFn f0) {
51 if(f0 instanceof IFn.L) {
52 return RT.shortCast(((IFn.L)f0).invokePrim());
53 } else {
54 return RT.shortCast(f0.invoke());
55 }
56 }
57
58 public static byte invokeB(IFn f0) {
59 if(f0 instanceof IFn.L) {

Callers

nothing calls this directly

Calls 3

shortCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected