| [ << ] | [ < ] | [ Up ] | [ > ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
7.5.4 SRFI-2 - and-let*
The following syntax can be obtained with
(use-modules (srfi srfi-2))
or alternatively
(use-modules (ice-9 and-let-star))
- library syntax: and-let* (clause …) body …
A combination of
andandlet*.Each clause is evaluated in turn, and if
#fis obtained then evaluation stops and#fis returned. If all are non-#fthen body is evaluated and the last form gives the return value, or if body is empty then the result is#t. Each clause should be one of the following,(symbol expr)Evaluate expr, check for
#f, and bind it to symbol. Likelet*, that binding is available to subsequent clauses.(expr)Evaluate expr and check for
#f.symbolGet the value bound to symbol and check for
#f.
Notice that
(expr)has an “extra” pair of parentheses, for instance((eq? x y)). One way to remember this is to imagine thesymbolin(symbol expr)is omitted.and-let*is good for calculations where a#fvalue means termination, but where a non-#fvalue is going to be needed in subsequent expressions.The following illustrates this, it returns text between brackets ‘[...]’ in a string, or
#fif there are no such brackets (ie. eitherstring-indexgives#f).(define (extract-brackets str) (and-let* ((start (string-index str #\[)) (end (string-index str #\] start))) (substring str (1+ start) end)))The following shows plain variables and expressions tested too.
diagnostic-levelsis taken to be an alist associating a diagnostic type with a level.stris printed only if the type is known and its level is high enough.(define (show-diagnostic type str) (and-let* (want-diagnostics (level (assq-ref diagnostic-levels type)) ((>= level current-diagnostic-level))) (display str)))The advantage of
and-let*is that an extended sequence of expressions and tests doesn’t require lots of nesting as would arise from separateandandlet*, or fromcondwith=>.
| [ << ] | [ < ] | [ Up ] | [ > ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
This document was generated on April 20, 2013 using texi2html 5.0.
