2018-09-22 18:17:47 +00:00
|
|
|
# An example implementation of functional, lazy
|
|
|
|
# sequences, as in clojure. The lazy seq is essentially
|
|
|
|
# A lazy linked list, where the next value is a function
|
|
|
|
# that must be called (realizing it), and the memoized.
|
|
|
|
# Use with (import "./path/to/this/file" :prefix "seq.")
|
|
|
|
|
2018-10-15 03:08:06 +00:00
|
|
|
(defmacro delay
|
2018-09-22 18:17:47 +00:00
|
|
|
"Lazily evaluate a series of expressions. Returns a function that
|
|
|
|
returns the result of the last expression. Will only evaluate the
|
|
|
|
body once, and then memoizes the result."
|
2018-10-15 03:08:06 +00:00
|
|
|
[& forms]
|
2018-12-01 03:49:21 +00:00
|
|
|
(def state (gensym))
|
|
|
|
(def loaded (gensym))
|
|
|
|
~(do
|
|
|
|
(var ,state nil)
|
|
|
|
(var ,loaded nil)
|
|
|
|
(fn []
|
|
|
|
(if ,loaded
|
|
|
|
,state
|
|
|
|
(do
|
2018-12-17 02:57:32 +00:00
|
|
|
(set ,loaded true)
|
2018-12-27 18:05:29 +00:00
|
|
|
(set ,state (do ,;forms)))))))
|
2018-09-22 18:17:47 +00:00
|
|
|
|
|
|
|
# Use tuples instead of structs to save memory
|
2018-12-11 23:06:10 +00:00
|
|
|
(def- HEAD 0)
|
|
|
|
(def- TAIL 1)
|
2018-09-22 18:17:47 +00:00
|
|
|
|
|
|
|
(defn empty-seq
|
|
|
|
"The empty sequence."
|
|
|
|
[] nil)
|
|
|
|
|
|
|
|
(defmacro cons
|
|
|
|
"Create a new sequence by prepending a value to the original sequence."
|
|
|
|
[h t]
|
|
|
|
(def x (tuple h t))
|
|
|
|
(fn [] x))
|
|
|
|
|
|
|
|
(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-09-22 18:22:21 +00:00
|
|
|
(defn lazy-range
|
2018-09-22 18:17:47 +00:00
|
|
|
"Return a sequence of integers [start, end)."
|
2018-12-27 18:05:29 +00:00
|
|
|
[start end &]
|
2018-09-22 18:22:21 +00:00
|
|
|
(if end
|
|
|
|
(if (< start end)
|
|
|
|
(delay (tuple start (lazy-range (+ 1 start) end)))
|
|
|
|
empty-seq)
|
|
|
|
(lazy-range 0 start)))
|
|
|
|
|
|
|
|
(defn lazy-map
|
2018-09-22 18:17:47 +00:00
|
|
|
"Return a sequence that is the result of applying f to each value in s."
|
|
|
|
[f s]
|
|
|
|
(delay
|
|
|
|
(def x (s))
|
|
|
|
(if x (tuple (f (get x HEAD)) (map f (get x TAIL))))))
|
|
|
|
|
|
|
|
(defn realize
|
|
|
|
"Force evaluation of a lazy sequence."
|
|
|
|
[s]
|
|
|
|
(when (s) (realize (tail s))))
|
|
|
|
|
2018-10-15 03:08:06 +00:00
|
|
|
(defn realize-map
|
2018-09-22 18:17:47 +00:00
|
|
|
"Evaluate f on each member of the sequence. Forces evaluation."
|
2018-10-15 03:08:06 +00:00
|
|
|
[f s]
|
2018-09-22 18:17:47 +00:00
|
|
|
(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]
|
|
|
|
(delay
|
|
|
|
(def x (s))
|
|
|
|
(if (and x (pos? n)) ((drop (- n 1) (get x TAIL))))))
|
|
|
|
|
|
|
|
(defn take
|
|
|
|
"Returns at most the first n values of s."
|
|
|
|
[n s]
|
|
|
|
(delay
|
|
|
|
(def x (s))
|
|
|
|
(if (and x (pos? n))
|
|
|
|
(tuple (get x HEAD) (take (- n 1) (get x TAIL))))))
|
|
|
|
|
|
|
|
(defn randseq
|
|
|
|
"Return a sequence of random numbers."
|
|
|
|
[]
|
2018-12-27 18:05:29 +00:00
|
|
|
(delay (tuple (math/random) (randseq))))
|
2018-09-22 18:17:47 +00:00
|
|
|
|
|
|
|
(defn take-while
|
|
|
|
"Returns a sequence of values until the predicate is false."
|
|
|
|
[pred s]
|
|
|
|
(delay
|
|
|
|
(def x (s))
|
|
|
|
(when x
|
|
|
|
(def thehead (get HEAD x))
|
|
|
|
(if thehead (tuple thehead (take-while pred (get TAIL x)))))))
|