You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With this change the two benchmarks shows the effect of boxing:
- lambdaBench: 445.352 ns/op
- lambdaNoboxBench: 60.220 ns/op
Previously, they have the same result because the boxing effect is shadowed
by the method call effect.
By doing more unboxing work in the method, we make sure the effect is visible
in the result.
0 commit comments