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

Method invokeLDD

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

Source from the content-addressed store, hash-verified

568 }
569
570 public static double invokeLDD(IFn f0, long a, double b) {
571 if(f0 instanceof IFn.LDD) {
572 return ((IFn.LDD)f0).invokePrim(a, b);
573 } else {
574 return RT.doubleCast(f0.invoke(a, b));
575 }
576 }
577
578 public static double invokeDLD(IFn f0, double a, long b) {
579 if(f0 instanceof IFn.DLD) {

Callers

nothing calls this directly

Calls 3

doubleCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected