Re: coop - a concurrent ml-like wanna be (pre-SRFI)
Alex Shinn 07 May 2021 13:47 UTC
On Fri, May 7, 2021 at 5:58 PM Marc Nieper-Wißkirchen
<xxxxxx@nieper-wisskirchen.de> wrote:
>
> Chibi's case-lambda implementation also produces (lambda args ...). Why isn't this optimized by your experimental optimizer?
Because case-lambda has multiple bodies with different lexical scopes,
which makes this type of optimization more difficult.
If I optimized fully for the match case then naturally case-lambda
would benefit as well.
--
Alex