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

Method invokeLLB

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

Source from the content-addressed store, hash-verified

464 }
465
466 public static byte invokeLLB(IFn f0, long a, long b) {
467 if(f0 instanceof IFn.LLL) {
468 return RT.byteCast(((IFn.LLL)f0).invokePrim(a, b));
469 } else {
470 return RT.byteCast(f0.invoke(a, b));
471 }
472 }
473
474 public static byte invokeLOB(IFn f0, long a, Object b) {
475 if(f0 instanceof IFn.LOL) {

Callers

nothing calls this directly

Calls 3

byteCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected