[ << ] | [ < ] | [ Up ] | [ > ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Ellipses in Quasiquote’d Output
Within the body of an sxml-match
form, a slightly extended version of
quasiquote is provided, which allows the use of ellipses. This is illustrated
in the example below.
(sxml-match '(e 3 4 5 6 7) [(e ,i ... 6 7) `("start" ,(list 'wrap i) ... "end")] [,otherwise #f])
The general pattern is that `(something ,i ...)
is rewritten as
`(something ,@i)
.
This document was generated on April 20, 2013 using texi2html 5.0.