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

Method invokeLLD

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

Source from the content-addressed store, hash-verified

536 }
537
538 public static double invokeLLD(IFn f0, long a, long b) {
539 if(f0 instanceof IFn.LLD) {
540 return ((IFn.LLD)f0).invokePrim(a, b);
541 } else {
542 return RT.doubleCast(f0.invoke(a, b));
543 }
544 }
545
546 public static double invokeLOD(IFn f0, long a, Object b) {
547 if(f0 instanceof IFn.LOD) {

Callers

nothing calls this directly

Calls 3

doubleCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected