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

Method invokeDLL

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

Source from the content-addressed store, hash-verified

288 }
289
290 public static long invokeDLL(IFn f0, double a, long b) {
291 if(f0 instanceof IFn.DLL) {
292 return ((IFn.DLL)f0).invokePrim(a, b);
293 } else {
294 return RT.longCast(f0.invoke(a, b));
295 }
296 }
297
298 public static long invokeOOL(IFn f0, Object a, Object b) {
299 if(f0 instanceof IFn.OOL) {

Callers

nothing calls this directly

Calls 3

longCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected