anaphoric/aif.rkt
2018-01-27 12:05:21 +01:00

13 lines
331 B
Racket

#lang racket/base
(provide aif it)
(require anaphoric/it
racket/stxparam
(for-syntax racket/base))
(define-syntax-rule (aif condition true-branch false-branch)
(let ([tmp condition])
(if tmp
(syntax-parameterize ([it (make-rename-transformer #'tmp)])
true-branch)
false-branch)))