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

Method rseq

src/jvm/clojure/lang/APersistentVector.java:39–43  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

37}
38
39public ISeq rseq(){
40 if(count() > 0)
41 return new RSeq(this, count() - 1);
42 return null;
43}
44
45static boolean doEquals(IPersistentVector v, Object obj){
46 if(obj instanceof IPersistentVector)

Callers

nothing calls this directly

Calls 1

countMethod · 0.65

Tested by

no test coverage detected