I can't seem to find anywhere that talks about doing this.
Say I have a hash {"23"=>[0,3]} and I want to merge in this hash {"23"=>[2,3]} to result with this hash {"23"=>[0,2,3]}
Or how about {"23"=>[3]} merged with {"23"=>0} to get {"23"=>[0,3]}
Thanks!
inject? There might be a more clever zip-by-key approach, though...reduce? :)