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

Method invokeDLB

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

Source from the content-addressed store, hash-verified

504 }
505
506 public static byte invokeDLB(IFn f0, double a, long b) {
507 if(f0 instanceof IFn.DLL) {
508 return RT.byteCast(((IFn.DLL)f0).invokePrim(a, b));
509 } else {
510 return RT.byteCast(f0.invoke(a, b));
511 }
512 }
513
514 public static byte invokeOOB(IFn f0, Object a, Object b) {
515 if(f0 instanceof IFn.OOL) {

Callers

nothing calls this directly

Calls 3

byteCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected