forked from clj-python/libpython-clj
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsugar.clj
50 lines (36 loc) · 956 Bytes
/
sugar.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
(ns libpython-clj2.sugar
(:require [libpython-clj2.python :as py]))
(py/initialize!)
(let [{{:strs [pyxfn]} :globals}
(py/run-simple-string "
import collections
class Deque:
def __init__(self):
self.q = collections.deque()
def __iter__(self):
while True:
yield next(self)
def __next__(self):
return self.q.popleft()
def append(self, x):
self.q.appendleft(x)
def pop(self):
self.q.popleft()
def pyxfn(g, *args, **kwargs):
q = Deque()
gx = g(q, *args, **kwargs)
return q, gx
")]
(def ^:private -pyxfn pyxfn))
(let [builtins (py/import-module "builtins")
pynext (py/get-attr builtins "next")]
(defn pyxfn
[g & args]
(fn [rf]
(let [[q gx] (apply -pyxfn g args)]
(fn
([] (rf))
([result] (rf result))
([result input]
(py/$a q append input)
(rf result (pynext gx))))))))