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

Method invokeOLS

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

Source from the content-addressed store, hash-verified

408 }
409
410 public static short invokeOLS(IFn f0, Object a, long b) {
411 if(f0 instanceof IFn.OLL) {
412 return RT.shortCast(((IFn.OLL)f0).invokePrim(a, b));
413 } else {
414 return RT.shortCast(f0.invoke(a, b));
415 }
416 }
417
418 public static short invokeDDS(IFn f0, double a, double b) {
419 if(f0 instanceof IFn.DDL) {

Callers

nothing calls this directly

Calls 3

shortCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected