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

Method invokeLOI

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

Source from the content-addressed store, hash-verified

328 }
329
330 public static int invokeLOI(IFn f0, long a, Object b) {
331 if(f0 instanceof IFn.LOL) {
332 return RT.intCast(((IFn.LOL)f0).invokePrim(a, b));
333 } else {
334 return RT.intCast(f0.invoke(a, b));
335 }
336 }
337
338 public static int invokeOLI(IFn f0, Object a, long b) {
339 if(f0 instanceof IFn.OLL) {

Callers

nothing calls this directly

Calls 3

intCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected