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

Method invokeLS

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

Source from the content-addressed store, hash-verified

132 }
133
134 public static short invokeLS(IFn f0, long a) {
135 if(f0 instanceof IFn.LL) {
136 return RT.shortCast(((IFn.LL)f0).invokePrim(a));
137 } else {
138 return RT.shortCast(f0.invoke(a));
139 }
140 }
141
142 public static short invokeDS(IFn f0, double a) {
143 if(f0 instanceof IFn.DL) {

Callers

nothing calls this directly

Calls 3

shortCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected