add and-let

This commit is contained in:
AlexKnauth 2018-01-25 22:47:34 -05:00
parent affa5e15a0
commit 8cec548ea7
3 changed files with 30 additions and 3 deletions

13
and-let.rkt Normal file
View File

@ -0,0 +1,13 @@
#lang racket/base
(provide and-let)
(require syntax/parse/define "if-let.rkt" (for-syntax racket/base))
(define-syntax and-let
(syntax-parser
[(_) #'#true]
[(_ body:expr) #'body]
[(_ [variable:id condition:expr] rest ...+)
#'(if-let [variable condition] (and-let rest ...) #false)]))

View File

@ -16,7 +16,8 @@
anaphoric/acond
anaphoric/if-let
anaphoric/when-let
anaphoric/cond-let))
anaphoric/cond-let
anaphoric/and-let))
(require anaphoric/it
anaphoric/aif
@ -24,4 +25,5 @@
anaphoric/acond
anaphoric/if-let
anaphoric/when-let
anaphoric/cond-let)
anaphoric/cond-let
anaphoric/and-let)

View File

@ -122,4 +122,16 @@ using @racket[it].
Each @racket[conditionᵢ] is evaluated at most once
(evaluation stops at the first successful
@racket[conditionᵢ]).}
@racket[conditionᵢ]).}
@defform[(and-let [identifier condition] ... body)]{
Variant of @racket[and] which binds each @racket[identifier]
to the value of its @racket[condition], in scope within all
@racket[condition]s afterwards as well as in @racket[body].
Each @racket[condition] is evaluated at most once, and
evaluation stops at the first false condition. The
@racket[body] is only evaluated when all
@racket[conditions] are successful.
}