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

Method invokeLLS

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

Source from the content-addressed store, hash-verified

392 }
393
394 public static short invokeLLS(IFn f0, long a, long b) {
395 if(f0 instanceof IFn.LLL) {
396 return RT.shortCast(((IFn.LLL)f0).invokePrim(a, b));
397 } else {
398 return RT.shortCast(f0.invoke(a, b));
399 }
400 }
401
402 public static short invokeLOS(IFn f0, long a, Object b) {
403 if(f0 instanceof IFn.LOL) {

Callers

nothing calls this directly

Calls 3

shortCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected