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

Method invokeOL

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

Source from the content-addressed store, hash-verified

100 }
101
102 public static long invokeOL(IFn f0, Object a) {
103 if(f0 instanceof IFn.OL) {
104 return ((IFn.OL)f0).invokePrim(a);
105 } else {
106 return RT.longCast(f0.invoke(a));
107 }
108 }
109
110 public static int invokeLI(IFn f0, long a) {
111 if(f0 instanceof IFn.LL) {

Callers

nothing calls this directly

Calls 3

longCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected