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

Method invokeDLF

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

Source from the content-addressed store, hash-verified

648 }
649
650 public static float invokeDLF(IFn f0, double a, long b) {
651 if(f0 instanceof IFn.DLD) {
652 return RT.floatCast(((IFn.DLD)f0).invokePrim(a, b));
653 } else {
654 return RT.floatCast(f0.invoke(a, b));
655 }
656 }
657
658 public static float invokeOOF(IFn f0, Object a, Object b) {
659 if(f0 instanceof IFn.OOD) {

Callers

nothing calls this directly

Calls 3

floatCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected