in reply to Re^2: Benchmark: Constant List in Hash Slice
in thread Benchmark: Constant List in Hash Slice
does this also explain why using a normal @array variable is faster than a constant list?No. That's because constant arrays are implemented as constant array refs. So
is implemented roughly asuse constant foo qw(a b c); @a = $h{foo()}
And neither (as far as I'm aware) get the compile-time HEK treatmentuse constant foo [qw(a b c)]; @a = $h{@{foo()}}
Dave.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Benchmark: Constant List in Hash Slice
by LanX (Saint) on Mar 14, 2019 at 15:33 UTC |