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

Method length

src/jvm/clojure/lang/RT.java:1800–1806  ·  view source on GitHub ↗
(ISeq list)

Source from the content-addressed store, hash-verified

1798}
1799
1800static public int length(ISeq list){
1801 int i = 0;
1802 for(ISeq c = list; c != null; c = c.next()) {
1803 i++;
1804 }
1805 return i;
1806}
1807
1808static public int boundedLength(ISeq list, int limit) {
1809 int i = 0;

Callers 5

parseMethod · 0.95
parseMethod · 0.95
macroexpand1Method · 0.95
seqToArrayMethod · 0.95
seqToTypedArrayMethod · 0.95

Calls 1

nextMethod · 0.95

Tested by

no test coverage detected