...
| No Format |
|---|
(defn char-range "Returns a lazy seq of chars from start to end (inclusive), by step, where start defaults to Character/MIN_VALUE, step to 1, and end to Character/MAX_VALUE." (\[\] (char-range (Character/MIN_VALUE) (Character/MAX_VALUE) 1)) ([end] (char-range (Character/MIN_VALUE) end 1)) ([start end] (char-range start end 1)) ([start end step] (map char (range (int start) (inc (int end)) step)))) |
...