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

Method invokeOLI

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

Source from the content-addressed store, hash-verified

336 }
337
338 public static int invokeOLI(IFn f0, Object a, long b) {
339 if(f0 instanceof IFn.OLL) {
340 return RT.intCast(((IFn.OLL)f0).invokePrim(a, b));
341 } else {
342 return RT.intCast(f0.invoke(a, b));
343 }
344 }
345
346 public static int invokeDDI(IFn f0, double a, double b) {
347 if(f0 instanceof IFn.DDL) {

Callers

nothing calls this directly

Calls 3

intCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected