Given:
Object nestKey; Object nestedKey; Object nestedValue; Map<T,Map<T,T>> nest; Map<T,T> nested;
How is a mapping added to nested where:
nest.containsKey(nestKey) == true;
?
Or is there an existing library of collections that would be more effective?
You mean something like the following generic method?