-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwhen_chain.carp
31 lines (29 loc) · 992 Bytes
/
when_chain.carp
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
; when chaining
; this allows you to collapse multiple nested whens into one form.
;
; this:
; (let [resource (create-resource)]
; (when (intact? &resource)
; (when (ready-for-input? &resource)
; (when (= "foobar" (name &resource))
; (work-with resource)))))
;
; becomes this:
; (let [resource (create-resource)]
; (when-chain (intact? &resource)
; (ready-for-input? resource)
; (= "foobar" (name &resource))
; (work-with resource)))
; the worker function for our macro
(defndynamic when-chain- [forms]
(if (= (length forms) 0)
; just emit nothing if nothing was given to us
()
(if (= (length forms) 1)
; the last element will always be returned as is; it’s the branch
(car forms)
; otherwise we nest the whens recursively
(list 'when (car forms) (when-chain- (cdr forms))))))
; the macro just passes all the forms to the worker function
(defmacro when-chain [:rest forms]
(when-chain- forms))