Where can I find documentation regarding #:when construction in DrRacket?
Here is full example:
(define (problem_9 sum)
(for*/first ([c (in-range 3 (- sum 2))]
[b (in-range 2 c)]
[a (in-range 1 b)]
#:when (and (= (+ a b c) sum)
(= (+ (* a a) (* b b)) (* c c))))
(+ a b c)))
I understand the purpose of it, but want to find documentation.