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

Method boundedLength

src/jvm/clojure/lang/RT.java:1808–1814  ·  view source on GitHub ↗
(ISeq list, int limit)

Source from the content-addressed store, hash-verified

1806}
1807
1808static public int boundedLength(ISeq list, int limit) {
1809 int i = 0;
1810 for(ISeq c = list; c != null && i <= limit; c = c.next()) {
1811 i++;
1812 }
1813 return i;
1814}
1815
1816///////////////////////////////// reader support ////////////////////////////////
1817

Callers 2

applyToHelperMethod · 0.95
applyToMethod · 0.95

Calls 1

nextMethod · 0.95

Tested by

no test coverage detected