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

Method invokeI

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

Source from the content-addressed store, hash-verified

40 }
41
42 public static int invokeI(IFn f0) {
43 if(f0 instanceof IFn.L) {
44 return RT.intCast(((IFn.L)f0).invokePrim());
45 } else {
46 return RT.intCast(f0.invoke());
47 }
48 }
49
50 public static short invokeS(IFn f0) {
51 if(f0 instanceof IFn.L) {

Callers

nothing calls this directly

Calls 3

intCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected