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

Method invokeLB

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

Source from the content-addressed store, hash-verified

156 }
157
158 public static byte invokeLB(IFn f0, long a) {
159 if(f0 instanceof IFn.LL) {
160 return RT.byteCast(((IFn.LL)f0).invokePrim(a));
161 } else {
162 return RT.byteCast(f0.invoke(a));
163 }
164 }
165
166 public static byte invokeDB(IFn f0, double a) {
167 if(f0 instanceof IFn.DL) {

Callers

nothing calls this directly

Calls 3

byteCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected