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

Method invokeDS

src/jvm/clojure/lang/FnInvokers.java:142–148  ·  view source on GitHub ↗
(IFn f0, double a)

Source from the content-addressed store, hash-verified

140 }
141
142 public static short invokeDS(IFn f0, double a) {
143 if(f0 instanceof IFn.DL) {
144 return RT.shortCast(((IFn.DL)f0).invokePrim(a));
145 } else {
146 return RT.shortCast(f0.invoke(a));
147 }
148 }
149
150 public static short invokeOS(IFn f0, Object a) {
151 if(f0 instanceof IFn.OL) {

Callers

nothing calls this directly

Calls 3

shortCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected