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

Method invokeLLF

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

Source from the content-addressed store, hash-verified

608 }
609
610 public static float invokeLLF(IFn f0, long a, long b) {
611 if(f0 instanceof IFn.LLD) {
612 return RT.floatCast(((IFn.LLD)f0).invokePrim(a, b));
613 } else {
614 return RT.floatCast(f0.invoke(a, b));
615 }
616 }
617
618 public static float invokeLOF(IFn f0, long a, Object b) {
619 if(f0 instanceof IFn.LOD) {

Callers

nothing calls this directly

Calls 3

floatCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected