1PqCEPdXCaSQmlyzTASKeu changeset
| Changeset | 643939666435 (b) |
|---|---|
| Parent | None (a) |
| a | b | ||
|---|---|---|---|
| 0 | + | (deftype SeqFly [s] | |
| 0 | + | clojure.lang.ISeq | |
| 0 | + | (first [this] (first (split s))) | |
| 0 | + | (next [this] (SeqFly. (last (split s)))) | |
| 0 | + | clojure.lang.Seqable | |
| 0 | + | (seq [this] this) | |
| 0 | + | Object | |
| 0 | + | (toString [this] (str s))) | |
| ... | |||
|
|