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

Method invokeLOF

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

Source from the content-addressed store, hash-verified

616 }
617
618 public static float invokeLOF(IFn f0, long a, Object b) {
619 if(f0 instanceof IFn.LOD) {
620 return RT.floatCast(((IFn.LOD)f0).invokePrim(a, b));
621 } else {
622 return RT.floatCast(f0.invoke(a, b));
623 }
624 }
625
626 public static float invokeOLF(IFn f0, Object a, long b) {
627 if(f0 instanceof IFn.OLD) {

Callers

nothing calls this directly

Calls 3

floatCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected