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

Method invokeDDB

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

Source from the content-addressed store, hash-verified

488 }
489
490 public static byte invokeDDB(IFn f0, double a, double b) {
491 if(f0 instanceof IFn.DDL) {
492 return RT.byteCast(((IFn.DDL)f0).invokePrim(a, b));
493 } else {
494 return RT.byteCast(f0.invoke(a, b));
495 }
496 }
497
498 public static byte invokeLDB(IFn f0, long a, double b) {
499 if(f0 instanceof IFn.LDL) {

Callers

nothing calls this directly

Calls 3

byteCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected