add and-let
This commit is contained in:
parent
affa5e15a0
commit
8cec548ea7
13
and-let.rkt
Normal file
13
and-let.rkt
Normal 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)]))
|
||||
|
6
main.rkt
6
main.rkt
|
@ -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)
|
||||
|
|
|
@ -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.
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user