Class IngredientHashMap<T,M,V>

Type Parameters:
T - The instance type.
M - The matching condition parameter.
V - The type of mapped values.
All Implemented Interfaces:
Iterable<Map.Entry<T,V>>, IIngredientCollectionLike<T,M,Map.Entry<T,V>>, IIngredientMap<T,M,V>, IIngredientMapMutable<T,M,V>

public class IngredientHashMap<T,M,V> extends IngredientMapWrappedAdapter<T,M,V,HashMap<IngredientInstanceWrapper<T,M>,V>>
An ingredient map collection that internally uses an HashMap to store instances. This means that key instances are hashed based on their component type's hash method.
See Also: