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

Method invokeLOL

src/jvm/clojure/lang/FnInvokers.java:258–264  ·  view source on GitHub ↗
(IFn f0, long a, Object b)

Source from the content-addressed store, hash-verified

256 }
257
258 public static long invokeLOL(IFn f0, long a, Object b) {
259 if(f0 instanceof IFn.LOL) {
260 return ((IFn.LOL)f0).invokePrim(a, b);
261 } else {
262 return RT.longCast(f0.invoke(a, b));
263 }
264 }
265
266 public static long invokeOLL(IFn f0, Object a, long b) {
267 if(f0 instanceof IFn.OLL) {

Callers

nothing calls this directly

Calls 3

longCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected