A persistent, functional, sequence interface ISeqs are immutable values, i.e. neither first(), nor rest() changes or invalidates the ISeq
| 16 | * or invalidates the ISeq</p> |
| 17 | */ |
| 18 | public interface ISeq extends IPersistentCollection { |
| 19 | |
| 20 | Object first(); |
| 21 | |
| 22 | ISeq next(); |
| 23 | |
| 24 | ISeq more(); |
| 25 | |
| 26 | ISeq cons(Object o); |
| 27 | |
| 28 | } |
no outgoing calls
no test coverage detected