Looking at the bytecode, using `_` inside a lambda...
# announcements
e
Looking at the bytecode, using
_
inside a lambda does not change the fact that the compiler will automatically assign a value to
it
c
Yeah, underscore is just there for readability purposes, to make it explicit that you don't care about some arguments. As a bonus it makes unused param warning go away 😉
e
But I am wondering if the team can do something to the compiler to get rid of this