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

Method invokeLDB

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

Source from the content-addressed store, hash-verified

496 }
497
498 public static byte invokeLDB(IFn f0, long a, double b) {
499 if(f0 instanceof IFn.LDL) {
500 return RT.byteCast(((IFn.LDL)f0).invokePrim(a, b));
501 } else {
502 return RT.byteCast(f0.invoke(a, b));
503 }
504 }
505
506 public static byte invokeDLB(IFn f0, double a, long b) {
507 if(f0 instanceof IFn.DLL) {

Callers

nothing calls this directly

Calls 3

byteCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected