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

Method count

src/jvm/clojure/lang/RT.java:660–664  ·  view source on GitHub ↗
(Object o)

Source from the content-addressed store, hash-verified

658}
659
660public static int count(Object o){
661 if(o instanceof Counted)
662 return ((Counted) o).count();
663 return countFrom(Util.ret1(o, o = null));
664}
665
666static int countFrom(Object o){
667 if(o == null)

Callers 15

countMethod · 0.95
parseMethod · 0.95
InstanceMethodExprMethod · 0.95
StaticMethodExprMethod · 0.95
parseMethod · 0.95
parseMethod · 0.95
NewExprMethod · 0.95
parseMethod · 0.95
parseMethod · 0.95
parseMethod · 0.95
emitValueMethod · 0.95
analyzeSeqMethod · 0.95

Calls 3

countFromMethod · 0.95
ret1Method · 0.95
countMethod · 0.65

Tested by

no test coverage detected