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

Method invokeB

src/jvm/clojure/lang/FnInvokers.java:58–64  ·  view source on GitHub ↗
(IFn f0)

Source from the content-addressed store, hash-verified

56 }
57
58 public static byte invokeB(IFn f0) {
59 if(f0 instanceof IFn.L) {
60 return RT.byteCast(((IFn.L)f0).invokePrim());
61 } else {
62 return RT.byteCast(f0.invoke());
63 }
64 }
65
66 public static double invokeD(IFn f0) {
67 if(f0 instanceof IFn.D) {

Callers

nothing calls this directly

Calls 3

byteCastMethod · 0.95
invokePrimMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected