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

Method invokeL

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

Source from the content-addressed store, hash-verified

32 }
33
34 public static long invokeL(IFn f0) {
35 if(f0 instanceof IFn.L) {
36 return ((IFn.L)f0).invokePrim();
37 } else {
38 return RT.longCast(f0.invoke());
39 }
40 }
41
42 public static int invokeI(IFn f0) {
43 if(f0 instanceof IFn.L) {

Callers

nothing calls this directly

Calls 3

longCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected