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

Method invokeLLI

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

Source from the content-addressed store, hash-verified

320 }
321
322 public static int invokeLLI(IFn f0, long a, long b) {
323 if(f0 instanceof IFn.LLL) {
324 return RT.intCast(((IFn.LLL)f0).invokePrim(a, b));
325 } else {
326 return RT.intCast(f0.invoke(a, b));
327 }
328 }
329
330 public static int invokeLOI(IFn f0, long a, Object b) {
331 if(f0 instanceof IFn.LOL) {

Callers

nothing calls this directly

Calls 3

intCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected