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

Method first

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

Source from the content-addressed store, hash-verified

46}
47
48public Object first(){
49 if(state.val == state)
50 synchronized(state)
51 {
52 if(state.val == state)
53 state.val = iter.next();
54 }
55 return state.val;
56}
57
58public ISeq next(){
59 if(state._rest == state)

Callers 1

nextMethod · 0.95

Calls 1

nextMethod · 0.65

Tested by

no test coverage detected