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

Method invokeLI

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

Source from the content-addressed store, hash-verified

108 }
109
110 public static int invokeLI(IFn f0, long a) {
111 if(f0 instanceof IFn.LL) {
112 return RT.intCast(((IFn.LL)f0).invokePrim(a));
113 } else {
114 return RT.intCast(f0.invoke(a));
115 }
116 }
117
118 public static int invokeDI(IFn f0, double a) {
119 if(f0 instanceof IFn.DL) {

Callers

nothing calls this directly

Calls 3

intCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected