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

Method invokeOLL

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

Source from the content-addressed store, hash-verified

264 }
265
266 public static long invokeOLL(IFn f0, Object a, long b) {
267 if(f0 instanceof IFn.OLL) {
268 return ((IFn.OLL)f0).invokePrim(a, b);
269 } else {
270 return RT.longCast(f0.invoke(a, b));
271 }
272 }
273
274 public static long invokeDDL(IFn f0, double a, double b) {
275 if(f0 instanceof IFn.DDL) {

Callers

nothing calls this directly

Calls 3

longCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected