anaphoric/cond-let.rkt
2021-02-27 16:05:28 +00:00

19 lines
739 B
Racket

#lang racket/base
(provide cond-let)
(require (for-syntax racket/base))
(define-syntax (cond-let stx)
(syntax-case stx (else)
[(cond-let [[identifierᵢ conditionᵢ] . bodyᵢ] ... [else . else-body])
#'(cond [conditionᵢ => (λ (identifierᵢ) . bodyᵢ)] ...
[else . else-body])]
[(cond-let [[identifierᵢ conditionᵢ] . bodyᵢ] ...)
#'(cond [conditionᵢ => (λ (identifierᵢ) . bodyᵢ)] ...)]
[(cond-let identifier [conditionᵢ . bodyᵢ] ... [else . else-body])
#'(cond [conditionᵢ => (λ (identifier) . bodyᵢ)] ...
[else . else-body])]
[(cond-let identifier [conditionᵢ . bodyᵢ] ...)
#'(cond [conditionᵢ => (λ (identifier) . bodyᵢ)] ...)]))