Welcome! Please see the About page for a little more info on how this works.

0 votes
in ClojureScript by

ChunkedSeq in clojure implements Counted, should do the same in CLJS. Implementation is straight forward.

2 Answers

0 votes
by

Comment made by: aralo

Patch lgtm. Straight from Clojure:

`

public int count(){
	return vec.cnt - (i + offset);
}

`

0 votes
by
Reference: https://clojure.atlassian.net/browse/CLJS-2471 (reported by aralo)
...