[plt-scheme] Re: match-lambda question
thanks for the reply,
this seems to be an elegant soln,
but since it uses the expression (macro x), it requires that the
existing macros be redefined to take all their inputs as a single
list.
changing the above code to
(define-syntax (mp mac) ;macro->procedure
(syntax-case mac ()
((_ x) (syntax (λ args
(eval `(x . ,args))))))
seems to work ok, though the eval worries me,
maybe, it isn't possible to change a general macro to a function as
the arguments to the fn are not available during expansion time.
it might still be possible to define macro which allows pattern-
matching with ...'s within a match-lambda body,
harsha