in reply to Re: Bulk hash population order
in thread Bulk hash population order
Assuming you have the new values you want in %newbits:
or@bighash{keys %newbits} = values %newbits;
Note that keys and values use the same order, so the above works.$bighash{$_} = $newbits{$_} for keys %newbits;
|
|---|