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

Method invokeOOF

src/jvm/clojure/lang/FnInvokers.java:658–664  ·  view source on GitHub ↗
(IFn f0, Object a, Object b)

Source from the content-addressed store, hash-verified

656 }
657
658 public static float invokeOOF(IFn f0, Object a, Object b) {
659 if(f0 instanceof IFn.OOD) {
660 return RT.floatCast(((IFn.OOD)f0).invokePrim(a, b));
661 } else {
662 return RT.floatCast(f0.invoke(a, b));
663 }
664 }
665
666 public static float invokeODF(IFn f0, Object a, double b) {
667 if(f0 instanceof IFn.ODD) {

Callers

nothing calls this directly

Calls 3

floatCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected