What is the fastest way to get new map using subKeySet of an existing Map?
Example:
existing map is:
1|"one"
2|"two"
3|"three"
KeySet is: 1,2,3
Than I clone this keyset and remove first value: 2,3
What is the fastest way to get this map:
2|"two"
3|"three"
using new keyset