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

Method invokeLL

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

Source from the content-addressed store, hash-verified

84 }
85
86 public static long invokeLL(IFn f0, long a) {
87 if(f0 instanceof IFn.LL) {
88 return ((IFn.LL)f0).invokePrim(a);
89 } else {
90 return RT.longCast(f0.invoke(a));
91 }
92 }
93
94 public static long invokeDL(IFn f0, double a) {
95 if(f0 instanceof IFn.DL) {

Callers

nothing calls this directly

Calls 3

longCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected