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

Method invokeOOS

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

Source from the content-addressed store, hash-verified

440 }
441
442 public static short invokeOOS(IFn f0, Object a, Object b) {
443 if(f0 instanceof IFn.OOL) {
444 return RT.shortCast(((IFn.OOL)f0).invokePrim(a, b));
445 } else {
446 return RT.shortCast(f0.invoke(a, b));
447 }
448 }
449
450 public static short invokeODS(IFn f0, Object a, double b) {
451 if(f0 instanceof IFn.ODL) {

Callers

nothing calls this directly

Calls 3

shortCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected