Modify the value of each entry within a map.
import public
|
The replaceAll() method updates the value of each entry in the map by applying an operation using the entry’s key and value. This operation can be defined using a lambda expression compatible with Java’s BiFunction interface’s apply() method.
public |
Parameter |
Description |
operator |
Necessary: A BiFunction object or lambda expression operating on each entry. The function’s first parameter holds the key of an entry, and the second parameter holds its corresponding value. |