A CorrespondenceMutator which allows mutation of the item associated with an existing key, and creation of a new key/item association.

Many KeyedCorrespondenceMutators are Maps.

Since 1.3.0

no type hierarchy

no subtypes hierarchy

Inherited Attributes
Attributes inherited from: Object
Methods
putSource Codeshared formal void put(Key key, Item item)

Set the item associated with the given key to the given item. If there is already an item associated with this key, replace the association. Otherwise, create a new association.

For any instance c of KeyedCorrespondenceMutator, c.put(key, item) may be written using the item and assignment operators:

c[key] = item
Inherited Methods
Methods inherited from: Object