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

Method invokeDDS

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

Source from the content-addressed store, hash-verified

416 }
417
418 public static short invokeDDS(IFn f0, double a, double b) {
419 if(f0 instanceof IFn.DDL) {
420 return RT.shortCast(((IFn.DDL)f0).invokePrim(a, b));
421 } else {
422 return RT.shortCast(f0.invoke(a, b));
423 }
424 }
425
426 public static short invokeLDS(IFn f0, long a, double b) {
427 if(f0 instanceof IFn.LDL) {

Callers

nothing calls this directly

Calls 3

shortCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected