How do I append hash a to hash b in Perl without using a loop?
feedback
|
|
If you mean take the union of their data, just do:
| |||||||||||||||||
feedback
|
|
You can also use slices to merge one hash into another:
Note that items in %b will overwrite items in %a that have the same key. | |||||||||
feedback
|
|
This will merge hashes and also take into account undefined entries, so they don't replace the content.
| |||
|
feedback
|