Say I have a map like
{one=1; two=1; three=1}
and another map like
{one=4; two=4; three=4}
I know that putAll() would add unique keys and replace existing keys. Will it be possible to do an addition of both the maps which would produce a result like adding the values whenever there is an existing keyword.
{one=5; two=5; three=5}