Hi y'all,
I'm making a blog post on Guile optimization gotchas I learned. But I
find that one piece of the picture is missing there: anon functions in
the profiler output. Like "anon #x117f408"
One of these functions eats up a lot of performance in my code. So I
can't say I'm an expert on optimiz
On Sat, 06 Apr 2024, Artyom Bologov wrote:
> Hi y'all,
>
> I'm making a blog post on Guile optimization gotchas I learned. But I
> find that one piece of the picture is missing there: anon functions in
> the profiler output. Like "anon #x117f408"
Anonymous, i.e. lambda?
[...]
--
Olivier Dion
ol
Hi Olivier
>Anonymous, i.e. lambda?
No, lambdas display as :xxx:yyy: where x is lines y is columns.
So anon functions are something else.
--
Artyom.