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

Method next

src/jvm/clojure/lang/IteratorSeq.java:58–69  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

56}
57
58public ISeq next(){
59 if(state._rest == state)
60 synchronized(state)
61 {
62 if(state._rest == state)
63 {
64 first();
65 state._rest = create(iter);
66 }
67 }
68 return (ISeq) state._rest;
69}
70
71public IteratorSeq withMeta(IPersistentMap meta){
72 if(meta() == meta)

Callers

nothing calls this directly

Calls 2

firstMethod · 0.95
createMethod · 0.95

Tested by

no test coverage detected