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

Method invokeLOS

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

Source from the content-addressed store, hash-verified

400 }
401
402 public static short invokeLOS(IFn f0, long a, Object b) {
403 if(f0 instanceof IFn.LOL) {
404 return RT.shortCast(((IFn.LOL)f0).invokePrim(a, b));
405 } else {
406 return RT.shortCast(f0.invoke(a, b));
407 }
408 }
409
410 public static short invokeOLS(IFn f0, Object a, long b) {
411 if(f0 instanceof IFn.OLL) {

Callers

nothing calls this directly

Calls 3

shortCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected