anaphoric/aand.rkt
Gregory Toprak 97e4d00fa0
Fix aand
2018-08-23 03:12:20 -04:00

15 lines
317 B
Racket

#lang racket/base
(provide aand it)
(require anaphoric/it
anaphoric/aif
(for-syntax racket/base
syntax/parse))
(define-syntax aand
(syntax-parser
[(_) #'#true]
[(_ body:expr) #'body]
[(_ condition:expr rest ...+)
#'(aif condition (aand rest ...) #false)]))