2018-03-16 03:27:44 +00:00
|
|
|
# An example implementation of functional, lazy
|
|
|
|
# sequences, like in clojure.
|
|
|
|
# Use with (import "./path/to/this/file" :prefix "seq/")
|
|
|
|
|
|
|
|
(defn- mem0 [f]
|
|
|
|
"Memoize a 0 arity function."
|
|
|
|
(var state nil)
|
|
|
|
(var loaded nil)
|
|
|
|
(fn []
|
|
|
|
(if loaded
|
|
|
|
state
|
|
|
|
(do
|
|
|
|
(def n (f))
|
2018-03-16 22:15:34 +00:00
|
|
|
(:= state n)
|
|
|
|
(:= loaded true)
|
2018-03-16 03:27:44 +00:00
|
|
|
n))))
|
|
|
|
|
2018-03-16 22:15:34 +00:00
|
|
|
# This creates one more closure than necessary but oh well
|
2018-03-16 03:27:44 +00:00
|
|
|
(defmacro delay
|
|
|
|
"Macro for lazy evaluation"
|
2018-03-16 19:45:24 +00:00
|
|
|
[& forms] (tuple mem0 (apply1 tuple (array-concat ['fn []] forms))))
|
2018-03-16 03:27:44 +00:00
|
|
|
|
|
|
|
# Use tuples instead of structs to save memory
|
|
|
|
(def HEAD :private 0)
|
|
|
|
(def TAIL :private 1)
|
|
|
|
|
|
|
|
(defn empty-seq
|
|
|
|
"The empty sequence."
|
|
|
|
[] nil)
|
|
|
|
|
|
|
|
(defn cons
|
|
|
|
"Create a new sequence by prepending a value to the original sequence."
|
|
|
|
[h t]
|
|
|
|
(delay (tuple h t)))
|
|
|
|
|
2018-03-16 17:40:10 +00:00
|
|
|
(defn cons1
|
|
|
|
"Create a new sequence cons by prepending a value to the original sequence."
|
|
|
|
[h t]
|
|
|
|
(tuple h t))
|
|
|
|
|
2018-03-16 03:27:44 +00:00
|
|
|
(defn empty?
|
|
|
|
"Check if a sequence is empty."
|
|
|
|
[s]
|
|
|
|
(not (s)))
|
|
|
|
|
|
|
|
(defn head
|
|
|
|
"Get the next value of the sequence."
|
|
|
|
[s]
|
|
|
|
(get (s) HEAD))
|
|
|
|
|
|
|
|
(defn tail
|
|
|
|
"Get the rest of a sequence"
|
|
|
|
[s]
|
|
|
|
(get (s) TAIL))
|
|
|
|
|
2018-03-16 17:40:10 +00:00
|
|
|
(defn range2
|
2018-03-16 03:27:44 +00:00
|
|
|
"Return a sequence of integers [start, end)."
|
|
|
|
[start end]
|
|
|
|
(if (< start end)
|
2018-03-16 19:45:24 +00:00
|
|
|
(cons start (range2 (+ 1 start) end))
|
2018-03-16 03:27:44 +00:00
|
|
|
empty-seq))
|
|
|
|
|
2018-03-16 17:40:10 +00:00
|
|
|
(defn range
|
|
|
|
"Return a sequence of integers [0, end)."
|
|
|
|
[end]
|
|
|
|
(range2 0 end))
|
|
|
|
|
2018-03-16 03:27:44 +00:00
|
|
|
(defn map
|
|
|
|
"Return a sequence that is the result of apply f to each value in s."
|
|
|
|
[f s]
|
2018-03-16 17:40:10 +00:00
|
|
|
(delay
|
|
|
|
(def x (s))
|
|
|
|
(if x (tuple (f (get x HEAD)) (map f (get x TAIL))))))
|
2018-03-16 03:27:44 +00:00
|
|
|
|
|
|
|
(defn realize
|
|
|
|
"Force evaluation of a lazy sequence."
|
|
|
|
[s]
|
|
|
|
(when (s) (realize (tail s))))
|
|
|
|
|
|
|
|
(defn realize-map [f s]
|
|
|
|
"Evaluate f on each member of the sequence. Forces evaluation."
|
|
|
|
(when (s) (f (head s)) (realize-map f (tail s))))
|
|
|
|
|
|
|
|
(defn drop
|
|
|
|
"Ignores the first n values of the sequence and returns the rest."
|
|
|
|
[n s]
|
2018-03-16 17:40:10 +00:00
|
|
|
(delay
|
|
|
|
(def x (s))
|
2018-03-16 19:45:24 +00:00
|
|
|
(if (s) (if (zero? n) s (drop (- n 1) (tail s))) empty-seq)))
|
2018-03-16 03:27:44 +00:00
|
|
|
|
|
|
|
(defn take
|
|
|
|
"Returns at most the first n values of s."
|
|
|
|
[n s]
|
|
|
|
(if (and (s) (pos? n))
|
|
|
|
(cons (head s) (take (- n 1) (tail s)))
|
|
|
|
empty-seq))
|
|
|
|
|
2018-03-16 17:40:10 +00:00
|
|
|
(defn take-while
|
|
|
|
"Returns a sequence of values until the predicate is false."
|
|
|
|
[pred s]
|
2018-03-16 19:45:24 +00:00
|
|
|
(delay
|
|
|
|
(def x (s))
|
|
|
|
(when x
|
|
|
|
(def thehead (get HEAD x))
|
|
|
|
(if thehead (tuple thehead (take-while pred (get TAIL x)))))))
|
2018-03-16 17:40:10 +00:00
|
|
|
|